summaryrefslogtreecommitdiff
path: root/Include
Commit message (Expand)AuthorAgeFilesLines
* 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
* Code review of the new buffer protocol. Mostly add questions that shouldNeal Norwitz2007-08-192-1/+2
* Merged in py3k-buffer branch to main line. All objects now use the buffer pr...Travis E. Oliphant2007-08-186-10/+237
* Remove support for BeOSSkip Montanaro2007-08-171-10/+4
* Apply SF patch #1775604: This adds three new codecs (utf-32, utf-32-le andWalter Dörwald2007-08-161-0/+82
* Remove RISCOS supportSkip Montanaro2007-08-162-14/+1
* Implement PEP 3131. Add isidentifier to str.Martin v. Löwis2007-08-152-0/+7
* Add XID_Start and XID_Continue properties to unicodectype.Martin v. Löwis2007-08-141-0/+12
* PyErr_Warn is deprecated in 2.5 - goes away for 3.0Skip Montanaro2007-08-121-3/+0
* Remove support for __members__ and __methods__. There still might beNeal Norwitz2007-08-111-16/+3
* Whitespace normalization.Neal Norwitz2007-08-081-12/+12
* Merged revisions 56753-56781 via svnmerge fromGuido van Rossum2007-08-061-1/+2
* Fix merge breakage.Martin v. Löwis2007-07-212-2/+2
* Merged revisions 56467-56482 via svnmerge fromMartin v. Löwis2007-07-2135-90/+95
* Merged revisions 56301-56442 via svnmerge fromGuido van Rossum2007-07-181-1/+1
* Merged revisions 56154-56264 via svnmerge fromGuido van Rossum2007-07-111-5/+14
* Merged revisions 55962-56019 via svnmerge fromGuido van Rossum2007-06-182-3/+4
* Add asserts to PyBytes_AS_STRING and PyBytes_GET_SIZE.Guido van Rossum2007-06-141-2/+2
* Merged revisions 55817-55961 via svnmerge fromGuido van Rossum2007-06-135-1/+30
* Rip out the file object's implementation.Guido van Rossum2007-06-122-45/+4
* Make identifiers str (not str8) objects throughout.Martin v. Löwis2007-06-104-7/+50
* Change float.__str__() and complex.__str__() to returnWalter Dörwald2007-05-311-0/+1
* Change PyErr_Format() to generate a unicode string (by usingWalter Dörwald2007-05-251-2/+1
* Add interning of unicode strings by copying the functionality fromWalter Dörwald2007-05-252-4/+15
* Merged revisions 55407-55513 via svnmerge fromGuido van Rossum2007-05-222-81/+84
* Rename test_xrange.py to test_range.py and fix theWalter Dörwald2007-05-211-3/+0
* Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirrorWalter Dörwald2007-05-182-1/+22