Show
Ignore:
Timestamp:
02/17/07 02:32:39 (5 years ago)
Author:
KirkMcDonald
Message:

* Class wrapping API replaced.
* Inheritance "shim" classes now automatically generated.
* Requires DMD 1.005 or newer. Breaks GDC support for the moment.
* Docs not yet updated to reflect changes.
* Copyright notices updated to 2007.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/infrastructure/pyd/pydobject.d

    r69 r100  
    170170        return new PydObject(PyObject_Str(m_ptr)); 
    171171    } 
    172     /// Allows use of PydObject in writef via %s 
    173     version (Pyd_with_Tango) { 
     172    version (Tango) { 
     173        /// Allows PydObject to be formatted. 
    174174        char[] toUtf8() { 
    175175            return d_type!(char[])(m_ptr); 
    176176        } 
    177177    } else { 
     178        /// Allows use of PydObject in writef via %s 
    178179        char[] toString() { 
    179180            return d_type!(char[])(m_ptr);