Python2/cxxsupport.cxx
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038 #include "CXX/Objects.hxx"
00039 namespace Py {
00040
00041 Py_UNICODE unicode_null_string[1] = { 0 };
00042
00043 Type Object::type () const
00044 {
00045 return Type (PyObject_Type (p), true);
00046 }
00047
00048 String Object::str () const
00049 {
00050 return String (PyObject_Str (p), true);
00051 }
00052
00053 String Object::repr () const
00054 {
00055 return String (PyObject_Repr (p), true);
00056 }
00057
00058 std::string Object::as_string() const
00059 {
00060 return static_cast<std::string>(str());
00061 }
00062
00063 List Object::dir () const
00064 {
00065 return List (PyObject_Dir (p), true);
00066 }
00067
00068 bool Object::isType (const Type& t) const
00069 {
00070 return type ().ptr() == t.ptr();
00071 }
00072
00073 Char::operator String() const
00074 {
00075 return String(ptr());
00076 }
00077
00078
00079
00080
00081 bool operator==(const Sequence::iterator& left, const Sequence::iterator& right)
00082 {
00083 return left.eql( right );
00084 }
00085
00086 bool operator!=(const Sequence::iterator& left, const Sequence::iterator& right)
00087 {
00088 return left.neq( right );
00089 }
00090
00091 bool operator< (const Sequence::iterator& left, const Sequence::iterator& right)
00092 {
00093 return left.lss( right );
00094 }
00095
00096 bool operator> (const Sequence::iterator& left, const Sequence::iterator& right)
00097 {
00098 return left.gtr( right );
00099 }
00100
00101 bool operator<=(const Sequence::iterator& left, const Sequence::iterator& right)
00102 {
00103 return left.leq( right );
00104 }
00105
00106 bool operator>=(const Sequence::iterator& left, const Sequence::iterator& right)
00107 {
00108 return left.geq( right );
00109 }
00110
00111
00112 bool operator==(const Sequence::const_iterator& left, const Sequence::const_iterator& right)
00113 {
00114 return left.eql( right );
00115 }
00116
00117 bool operator!=(const Sequence::const_iterator& left, const Sequence::const_iterator& right)
00118 {
00119 return left.neq( right );
00120 }
00121
00122 bool operator< (const Sequence::const_iterator& left, const Sequence::const_iterator& right)
00123 {
00124 return left.lss( right );
00125 }
00126
00127 bool operator> (const Sequence::const_iterator& left, const Sequence::const_iterator& right)
00128 {
00129 return left.gtr( right );
00130 }
00131
00132 bool operator<=(const Sequence::const_iterator& left, const Sequence::const_iterator& right)
00133 {
00134 return left.leq( right );
00135 }
00136
00137 bool operator>=(const Sequence::const_iterator& left, const Sequence::const_iterator& right)
00138 {
00139 return left.geq( right );
00140 }
00141
00142
00143 bool operator==(const Mapping::iterator& left, const Mapping::iterator& right)
00144 {
00145 return left.eql( right );
00146 }
00147
00148 bool operator!=(const Mapping::iterator& left, const Mapping::iterator& right)
00149 {
00150 return left.neq( right );
00151 }
00152
00153
00154 bool operator==(const Mapping::const_iterator& left, const Mapping::const_iterator& right)
00155 {
00156 return left.eql( right );
00157 }
00158
00159 bool operator!=(const Mapping::const_iterator& left, const Mapping::const_iterator& right)
00160 {
00161 return left.neq( right );
00162 }
00163
00164
00165 #ifndef CXX_NO_IOSTREAMS
00166
00167
00168 std::ostream& operator<< (std::ostream& os, const Object& ob)
00169 {
00170 return (os << static_cast<std::string>(ob.str()));
00171 }
00172 #endif
00173
00174 }