summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* In followup to #1310: Remove more exception indexing.Georg Brandl2007-10-223-7/+9
* ssue 1309: fix by Christian Heimes to be able to build on Windows.Guido van Rossum2007-10-221-1/+4
* Fix exception indexing.Georg Brandl2007-10-221-1/+1
* Issue 1267, continued.Guido van Rossum2007-10-2212-63/+93
* Make sure the malloc'ed string has space for the null byte.Brett Cannon2007-10-211-1/+1
* Fix PyTokenizer_FindEncoding() for OS X 10.4. Turns out that seeking to theBrett Cannon2007-10-201-4/+11
* Fix a memory leak caused by PyTokenizer_FindEncoding() returning a char * thatBrett Cannon2007-10-201-3/+8
* Plug a memory leak where a struct tok_state was not being freed.Brett Cannon2007-10-201-3/+11
* 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-1911-31/+175
* Patch 1280, by Alexandre Vassalotti.Guido van Rossum2007-10-199-51/+43
* This is the uncontroversial half of patch 1263 by Thomas Lee:Guido van Rossum2007-10-192-13/+17
* Merge 58539: squelch the warning that this test is intended to raise.Gregory P. Smith2007-10-191-2/+7
* Merge 58532, 58533, 58534: bsddb.dbtables bug fixes - don't allow null bytesGregory P. Smith2007-10-181-13/+14
* Patch# 1258 by Christian Heimes: kill basestring.Guido van Rossum2007-10-1677-217/+171
* For PEP3137: Adds missing methods to the mutable PyBytes object (soonGregory P. Smith2007-10-1612-1079/+1595
* Fix a small typo in the comment of unicode_default_encoding[].Alexandre Vassalotti2007-10-161-1/+1
* Make the docstring for io.open() a raw string so that the explanation for theBrett Cannon2007-10-151-1/+1
* Move decl so it compiles with C89.Neal Norwitz2007-10-151-1/+1
* Update what the locale module documents about string operations.Guido van Rossum2007-10-151-11/+8
* Patch #1272, by Christian Heimes and Alexandre Vassalotti.Guido van Rossum2007-10-1517-41/+96
* Finish bug fix applied at 58398. I missed a piece, Tal Einat found the error.Kurt B. Kaiser2007-10-151-1/+1
* Fix yet another stray 2.x-ism (maybe merged?).Guido van Rossum2007-10-151-2/+1
* Make it possible to run this test stand-alone.Guido van Rossum2007-10-151-0/+3
* Fix typo: formats -> format. (Only mattered in wide unicode builds.)Guido van Rossum2007-10-141-1/+1
* Fix some more memory leaks (in error conditions) introduced in r58455.Neal Norwitz2007-10-141-3/+4
* Fix the memory leak introduced in r58455. The buffer referenceAlexandre Vassalotti2007-10-141-1/+4
* Remove the buffer API from PyUnicode as specified by PEP 3137. Also,Alexandre Vassalotti2007-10-144-17/+13
* Merge 58450: fix uncollectable reference caused by bsddb.db.DBShelf.appendGregory P. Smith2007-10-131-2/+19
* Eliminate use of PyBUF_CHARACTER flag which is no longer part of the buffer i...Travis E. Oliphant2007-10-135-23/+20
* Fix typo in arraymodule.c (?) -- it's PyBUF_LOCK, not PyBUF_LOCKDATA.Guido van Rossum2007-10-131-1/+1
* Remove more hotshot cruft.Neal Norwitz2007-10-136-17/+1
* Fix problems with memoryview object. There is still more to do to finish PEP...Travis E. Oliphant2007-10-124-389/+408
* Add macros for checking for long double and defining the size of long double ...Travis E. Oliphant2007-10-123-1/+481
* Fix Issue 1268 with the array module by backing-out the 'w' addition. All bu...Travis E. Oliphant2007-10-121-18/+36
* Make _load_testfile() use its encoding argument when __loader__ is defined.Brett Cannon2007-10-122-1/+10
* Merge r58434:Gregory P. Smith2007-10-122-23/+79
* Remove self-referential import.Brett Cannon2007-10-111-2/+1
* clean out some hotshot-related build turdsFred Drake2007-10-114-17/+0
* remove hotshot profiler from Py3kFred Drake2007-10-1113-2383/+14
* Two changes that are definitely problem-free and avoid calling print()Guido van Rossum2007-10-102-6/+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
* Fix another stray PyString reference that should be PyBytes; and its comment.Guido van Rossum2007-10-101-2/+2
* Fix an issue in PyTokenizer_RestoreEncoding() which was treating a PyBytesGuido van Rossum2007-10-101-5/+10
* Random changes having to do with readline() and bytes.Guido van Rossum2007-10-101-25/+14
* the default class attr is needed!Kurt B. Kaiser2007-10-101-0/+1
* Don't depend on str8.splitlines() in test_chunkcoding().Guido van Rossum2007-10-101-2/+8
* Windows EOL sequence not converted correctly, encoding error.Kurt B. Kaiser2007-10-092-4/+13
* PyFile_WriteObject() should use PyObject_Repr(), not _ReprStr8().Guido van Rossum2007-10-091-1/+1