summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* use macroSkip Montanaro2005-07-171-1/+1
|
* backportSkip Montanaro2005-07-171-1/+2
|
* Backport checkin:Walter Dörwald2005-07-121-27/+45
| | | | | Apply SF patch #1101726: Fix buffer overrun in tokenizer.c when a source file with a PEP 263 encoding declaration results in long decoded line.
* Oops.Georg Brandl2005-07-121-1/+1
|
* backport bug [ 1232768 ] Mistakes in online docs under "5.3 Pure Embedding"Georg Brandl2005-07-121-6/+4
|
* backport bug [ 1235266 ] debug info file descriptor of tarfile is inconsistentGeorg Brandl2005-07-121-1/+1
|
* Backport:Georg Brandl2005-07-112-27/+32
| | | | | | | | | SF bug 1185883: PyObject_Realloc can't safely take over a block currently managed by C, because it's possible for the block to be smaller than the new requested size, and at the end of allocated VM. Trying to copy over nbytes bytes to a Python small-object block can segfault then, and there's no portable way to avoid this (we would have to know how many bytes starting at p are addressable, and std C has no means to determine that).
* bug 1234979 additionGeorg Brandl2005-07-091-2/+2
|
* backport bug [ 1234979 ] Lock.acquire treats only 1 as TrueGeorg Brandl2005-07-082-1/+4
|
* backport bug [ 969757 ] function and method objects confounded in TutorialGeorg Brandl2005-07-081-1/+1
|
* backport bug #1177468: don't cache /dev/urandom file descriptor in os.urandomGeorg Brandl2005-07-042-8/+7
|
* Revert patch for 1162912.Georg Brandl2005-07-041-3/+0
|
* backport bug [ 1162912 ] typesseq-mutable lacks note on combined key/cmp usageGeorg Brandl2005-07-031-0/+3
|
* backport doctest for weakref examplesGeorg Brandl2005-07-022-2/+90
|
* backport patch [ 1231538 ] Typo fix in compiler/transformer.py (WalkerEror)Georg Brandl2005-07-021-11/+11
|
* backport bug [ 1228904 ] weakref example brokenGeorg Brandl2005-07-021-5/+2
|
* backport patch [ 1230615 ] Patch for (Doc) #1168746 (frame.f_exc_*)Georg Brandl2005-07-021-11/+14
| | | | backport bug [ 1204734 ] incorrect description of __getattribute__
* Cross reference the set built-ins with the sets module.Raymond Hettinger2005-07-011-0/+8
|
* Provide a comparison to the builtin set types.Raymond Hettinger2005-07-011-2/+32
|
* More info on rounding modes. Add sections for floating point notes.Raymond Hettinger2005-07-011-7/+12
|
* Note that file objects are iterable.Raymond Hettinger2005-06-281-0/+15
|
* * Show the keyword argument form of dict().Raymond Hettinger2005-06-271-2/+12
| | | | * Note that dict works with the "in" keyword.
* add note that os.EX_* constants are subject to availability on the hostFred Drake2005-06-271-0/+3
| | | | platform
* - Bug #839151: Fix an attempt to access sys.argv in the warnings moduleGeorg Brandl2005-06-261-0/+3
| | | | though this can be missing in embedded interpreters
* backport bug [ 839151 ] attempt to access sys.argv when it doesn't existGeorg Brandl2005-06-261-1/+5
|
* backport bug [ 1172785 ] doctest.script_from_examples() result sometimes ↵Georg Brandl2005-06-261-1/+2
| | | | un-exec-able
* - Bug #1155638: Fix a bug which affected HTTP 0.9 responses in httplib.Georg Brandl2005-06-261-0/+2
|
* backport bug [ 1155638 ] self.length shield exception in httplibGeorg Brandl2005-06-261-0/+1
|
* Backport: Prevent creating a HTML link to file://?/Georg Brandl2005-06-261-2/+5
|
* - Bug #1100201: Cross-site scripting was possible on BaseHTTPServer viaGeorg Brandl2005-06-261-0/+19
| | | | error messages.
* backport bug [ 1100201 ] Cross-site scripting on BaseHTTPServerGeorg Brandl2005-06-261-1/+4
|
* backport bug [ 1072853 ] thisid not intialized in pindent.py scriptGeorg Brandl2005-06-261-0/+1
|
* backport bug [ 1166582 ] IterableUserDict not in docsGeorg Brandl2005-06-251-3/+9
|
* backport bug [ 1186072 ] tempnam doc doesn't include link to tmpfileGeorg Brandl2005-06-251-8/+9
|
* backport bug [ 1175022 ] property example code errorGeorg Brandl2005-06-251-0/+1
|
* backport [ 1190563 ] os.waitpid docs don't specify return value for WNOHANGGeorg Brandl2005-06-251-2/+3
|
* backport bug [ 1202475 ] httplib docs mentioning HTTPConnection.getreplyGeorg Brandl2005-06-251-5/+10
|
* backport patch [ 1213031 ] note that os.chown can have -1 as an argumentGeorg Brandl2005-06-251-1/+1
|
* backport of bug [ 1225705 ] os.environ documentation should mention unsetenvGeorg Brandl2005-06-251-3/+21
|
* backport Patch #1227442: smtplib.SMTP.sendmail() accepts list or string for ↵Georg Brandl2005-06-251-7/+8
| | | | to_addrs.
* SF bug #1224621: tokenize module does not detect inconsistent dedentsRaymond Hettinger2005-06-213-1/+24
|
* SF patch #1200018: Restore GC support to set objectsRaymond Hettinger2005-06-193-7/+36
| | | | | Reverts 1.26 and 1.27. And adds cycle testing.
* Bug #1209560: spurious blank page in dist.pdf (backport)Georg Brandl2005-06-181-0/+3
|
* Patch #1180012: add documentation for modulefinder (backport)Georg Brandl2005-06-181-0/+1
|
* Fix typo.Raymond Hettinger2005-06-171-1/+1
|
* backport Lib/test/test_class.py revision 1.13:Michael W. Hudson2005-06-161-1/+1
| | | | | Don't use 'is not' to compare strings. (spotted by reading pypy-svn :)
* Fix check for error conditionAndrew M. Kuchling2005-06-151-1/+1
|
* [Patch #1005892 from Alexandr Zamaraev] Fix two errors in the curses test suiteAndrew M. Kuchling2005-06-151-1/+2
|
* Fix nits.Raymond Hettinger2005-06-151-2/+3
|
* backportSkip Montanaro2005-06-151-0/+1
|