summaryrefslogtreecommitdiffstats
path: root/Include
Commit message (Expand)AuthorAgeFilesLines
* Changed #ifdef 0 to #if 0.Christian Heimes2007-12-021-1/+1
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-024-15/+18
* #1535: rename __builtin__ module to builtins.Georg Brandl2007-12-021-2/+2
* Merged revisions 59245-59254 via svnmerge fromChristian Heimes2007-12-011-0/+4
* Cleanups and documentation updates related to the removal of unbound methods.Christian Heimes2007-11-301-1/+0
* Partial fix for bug #1306Christian Heimes2007-11-301-0/+1
* Added all PyTypeObjects to the appropriate header files.Christian Heimes2007-11-2910-1/+31
* Removed the API to create unbound methods and simplified the API for bound me...Christian Heimes2007-11-271-6/+3
* Merged revisions 59056-59076 via svnmerge fromChristian Heimes2007-11-201-0/+7
* Merged revisions 59005-59040 via svnmerge fromChristian Heimes2007-11-181-0/+2
* Fixed some build issues and updated docs.Christian Heimes2007-11-171-2/+2
* This is roughly socket2.diff from issue 1378, with a few changes appliedGuido van Rossum2007-11-161-0/+9
* Replace PyObject_Unicode with PyObject_Str everywhere, and remove theThomas Heller2007-11-151-1/+0
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-066-98/+16
* Fixed a bug in PyUnicode_DecodeFSDefault. strcmp() returns 0 on success.Christian Heimes2007-11-041-0/+8
* Patch 1352 (continued in issue 1329) by Christian Heimes.Guido van Rossum2007-10-301-0/+7
* Patch 1329 (partial) by Christian Heimes.Guido van Rossum2007-10-301-1/+2
* Kill PyString_Encode(), which isn't used anywhere.Guido van Rossum2007-10-261-18/+8
* Issue 1267, continued.Guido van Rossum2007-10-221-4/+1
* Tweak the version *string* to clarify that this isn't your father's 3.0a1. :-)Guido van Rossum2007-10-201-1/+1
* Patch 1267 by Christian Heimes.Guido van Rossum2007-10-191-0/+3
* Patch# 1258 by Christian Heimes: kill basestring.Guido van Rossum2007-10-161-1/+0
* For PEP3137: Adds missing methods to the mutable PyBytes object (soonGregory P. Smith2007-10-161-0/+84
* Patch #1272, by Christian Heimes and Alexandre Vassalotti.Guido van Rossum2007-10-152-2/+18
* Eliminate use of PyBUF_CHARACTER flag which is no longer part of the buffer i...Travis E. Oliphant2007-10-131-10/+9
* Fix problems with memoryview object. There is still more to do to finish PEP...Travis E. Oliphant2007-10-122-35/+42
* Delete bufferobject.[ch].Guido van Rossum2007-10-082-34/+0
* Change PyBuffer to Py_buffer to be consistent with other non-object structure...Travis E. Oliphant2007-09-233-12/+12
* Remove more cruft leftover from nb_coerce. Rename nb_coerce toNeil Schemenauer2007-09-211-2/+1
* Fixing the spelling of "writeable" to "writable", particularly PyBUF_WRITEABLE.Sean Reifscheider2007-09-173-10/+12
* Merged revisions 57778-58052 via svnmerge fromThomas Wouters2007-09-081-0/+1
* Convert code from sys.stdin.encoding to UTF-8 inMartin v. Löwis2007-09-042-2/+4
* Get rid of METH_OLDARGS.Georg Brandl2007-09-011-1/+1
* Fix a compile error on Windows.Collin Winter2007-08-311-1/+1
* Issue #1066: implement PEP 3109, 2/3 of PEP 3134.Collin Winter2007-08-312-26/+31
* Remove the simple slicing API. All slicing is now done with slice objects.Thomas Wouters2007-08-302-11/+2
* Update patch level to 3.0a1. We're close enough.Guido van Rossum2007-08-301-2/+2
* Add PyUnicode_AsStringAndSize(), which is like PyUnicode_AsString() butGuido van Rossum2007-08-291-8/+13
* PEP 3101: Removed _formatter_xxx routines from sysmodule, and made them unico...Eric Smith2007-08-271-3/+0
* Fix refleaks in test_unicode and test_string related to the new format code.Neal Norwitz2007-08-271-4/+2
* PEP 3101: Completed string.Formatter class. Reimplemented field_name to obje...Eric Smith2007-08-261-2/+1
* Get rid of more uses of string and use const in a few places.Neal Norwitz2007-08-261-2/+2
* Fix some commentsNeal Norwitz2007-08-251-2/+2
* Fix typo in commentNeal Norwitz2007-08-251-1/+1
* Implementation of PEP 3101, Advanced String Formatting.Eric Smith2007-08-252-0/+14
* Add const to input string parametersNeal Norwitz2007-08-251-4/+4
* Remove PyArg_Parse usage from time module. (An extra set of eyeballs onSkip Montanaro2007-08-241-0/+4
* Add const to some strings that are not modifiedNeal Norwitz2007-08-241-4/+4
* Fix memory leak in arraymodule.c and respond to a few comments by nnorwitz.Travis E. Oliphant2007-08-201-2/+3
* Remove _PyObject_DelNeal Norwitz2007-08-191-3/+0