Changeset 100 for trunk/infrastructure/pyd/pydobject.d
- Timestamp:
- 02/17/07 02:32:39 (5 years ago)
- Files:
-
- trunk/infrastructure/pyd/pydobject.d (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/infrastructure/pyd/pydobject.d
r69 r100 170 170 return new PydObject(PyObject_Str(m_ptr)); 171 171 } 172 /// Allows use of PydObject in writef via %s173 version (Pyd_with_Tango) {172 version (Tango) { 173 /// Allows PydObject to be formatted. 174 174 char[] toUtf8() { 175 175 return d_type!(char[])(m_ptr); 176 176 } 177 177 } else { 178 /// Allows use of PydObject in writef via %s 178 179 char[] toString() { 179 180 return d_type!(char[])(m_ptr);
