Ignore:
Timestamp:
Mar 19, 2014, 11:11:30 AM (11 years ago)
Author:
dmik
Message:

python: Update vendor to 2.7.6.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • python/vendor/current/Include/Python.h

    r2 r388  
    9393#include "rangeobject.h"
    9494#include "stringobject.h"
    95 /* #include "memoryobject.h" */
     95#include "memoryobject.h"
    9696#include "bufferobject.h"
    9797#include "bytesobject.h"
     
    108108#include "fileobject.h"
    109109#include "cobject.h"
     110#include "pycapsule.h"
    110111#include "traceback.h"
    111112#include "sliceobject.h"
     
    135136#include "eval.h"
    136137
     138#include "pyctype.h"
    137139#include "pystrtod.h"
    138140#include "pystrcmp.h"
     141#include "dtoa.h"
    139142
    140143/* _Py_Mangle is defined in compile.c */
     
    148151#define PyArg_NoArgs(v)         PyArg_Parse(v, "")
    149152
    150 /* Convert a possibly signed character to a nonnegative int */
    151 /* XXX This assumes characters are 8 bits wide */
    152 #ifdef __CHAR_UNSIGNED__
    153 #define Py_CHARMASK(c)          (c)
    154 #else
     153/* Argument must be a char or an int in [-128, 127] or [0, 255]. */
    155154#define Py_CHARMASK(c)          ((unsigned char)((c) & 0xff))
    156 #endif
    157155
    158156#include "pyfpe.h"
Note: See TracChangeset for help on using the changeset viewer.