summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* Merged revisions 58886-58929 via svnmerge fromGuido van Rossum2007-11-102-9/+20
* No need to include windows.h twiceAmaury Forgeot d'Arc2007-11-101-5/+1
* Cosmetic changes to Christian's patch r58903.Guido van Rossum2007-11-071-6/+4
* Patch for bug http://bugs.python.org/issue1293Christian Heimes2007-11-071-1/+19
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-0612-325/+266
* Applied patch #1379 with a minor tweak.Christian Heimes2007-11-041-2/+2
* Fixed a bug in PyUnicode_DecodeFSDefault. strcmp() returns 0 on success.Christian Heimes2007-11-041-1/+1
* Fixes for issue 1752184, ensuring type objects are always createdGuido van Rossum2007-11-022-2/+2
* Merged revisions 58221-58741 via svnmerge fromGuido van Rossum2007-11-013-1/+81
* Patch 1352 (continued in issue 1329) by Christian Heimes.Guido van Rossum2007-10-301-1/+8
* Patch 1329 (partial) by Christian Heimes.Guido van Rossum2007-10-302-5/+5
* Bug #1356: Avoid using the C99 keyword 'restrict'.Martin v. Löwis2007-10-291-4/+4
* Try to fix some of the failing tests on Win64. PY_SSIZE_T_MAX (8 bytes)Neal Norwitz2007-10-261-1/+1
* #1316: remove redundant PyLong_Check calls when PyInt_Check was already called.Georg Brandl2007-10-231-3/+1
* Issue 1267, continued.Guido van Rossum2007-10-222-7/+16
* Fix a memory leak caused by PyTokenizer_FindEncoding() returning a char * thatBrett Cannon2007-10-201-3/+8
* Patch 1267 by Christian Heimes.Guido van Rossum2007-10-192-3/+96
* This is the uncontroversial half of patch 1263 by Thomas Lee:Guido van Rossum2007-10-192-13/+17
* Patch# 1258 by Christian Heimes: kill basestring.Guido van Rossum2007-10-161-2/+8
* Move decl so it compiles with C89.Neal Norwitz2007-10-151-1/+1
* Patch #1272, by Christian Heimes and Alexandre Vassalotti.Guido van Rossum2007-10-158-19/+26
* Remove the buffer API from PyUnicode as specified by PEP 3137. Also,Alexandre Vassalotti2007-10-141-1/+1
* Eliminate use of PyBUF_CHARACTER flag which is no longer part of the buffer i...Travis E. Oliphant2007-10-131-2/+4
* get rid of some more PyString uses.Guido van Rossum2007-10-101-15/+19
* Minor cleanup of the comment for PyErr_ProgramText() and a tweak to the codeGuido van Rossum2007-10-101-7/+10
* Breaking ground for PEP 3137 implementation:Guido van Rossum2007-10-081-2/+1
* Change PyBuffer to Py_buffer to be consistent with other non-object structure...Travis E. Oliphant2007-09-232-4/+4
* Merged revisions 58211-58220 via svnmerge fromThomas Wouters2007-09-201-37/+49
* Whitespace cleanup.Thomas Wouters2007-09-191-38/+39
* Merged revisions 58203-58210 via svnmerge fromThomas Wouters2007-09-192-24/+24
* Merged revisions 57778-58052 via svnmerge fromThomas Wouters2007-09-081-0/+8
* Convert code from sys.stdin.encoding to UTF-8 inMartin v. Löwis2007-09-042-8/+24
* Decode input() with stdin.encoding. Fixes #1097.Martin v. Löwis2007-09-041-2/+17
* Patch #1075: Use wide API to format error messages.Martin v. Löwis2007-09-031-32/+57
* Fix refleaks exposed by test_raise.Collin Winter2007-09-011-2/+2
* Changed to use 'U' argument to PyArg_ParseTuple, instead of manually checking...Eric Smith2007-09-011-1/+1
* Explicitly convert err->text to Unicode. Fixes #1069.Martin v. Löwis2007-08-311-3/+12
* Ugh, hopefully I can get this right. The code is only compiled on Win64Neal Norwitz2007-08-311-1/+1
* Try to fix the problem of passing a non-int on Win64 right this time.Neal Norwitz2007-08-311-2/+5
* Try to fix a problem with large values on Win64. Diagnosed by Thomas HellerNeal Norwitz2007-08-311-1/+1
* Remove chr8, we're not likely to need it at this pointNeal Norwitz2007-08-311-26/+1
* Customary 2nd submit of this file after it's been changed.Guido van Rossum2007-08-311-2/+2
* Added test cases for string.Formatter subclassing.Eric Smith2007-08-311-12/+23
* Update import.c's MAGIC value for the new raise syntax (as opposed to merely ...Collin Winter2007-08-311-1/+1
* Issue #1066: implement PEP 3109, 2/3 of PEP 3134.Collin Winter2007-08-317-178/+113
* Remove the simple slicing API. All slicing is now done with slice objects.Thomas Wouters2007-08-303-211/+3
* [Oops, I forgot half of the patch.]Guido van Rossum2007-08-291-0/+5
* Three patches from issue #1047, by Amaury Forgeot d'Arc:Guido van Rossum2007-08-291-0/+28
* Added test to ensure __format__ methods return unicode objects.Eric Smith2007-08-271-4/+1
* Some changes in preparation of stricter rules about mixing str and bytes.Guido van Rossum2007-08-272-9/+14