Show
Ignore:
Timestamp:
12/30/08 15:05:21 (3 years ago)
Author:
xi
Message:

Merged the MSVC6 compatibility hack from the trunk.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pyyaml/tags/3.08/ext/_yaml.h

    r335 r340  
    1414 
    1515#endif 
     16 
     17#ifdef _MSC_VER /* MS Visual C++ 6.0 */ 
     18#if _MSC_VER == 1200 
     19 
     20#define PyLong_FromUnsignedLongLong(z)  PyInt_FromLong(i) 
     21 
     22#endif 
     23#endif