summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Add test of file.write(array) extracted from Jython.Frank Wierzbicki2009-08-161-0/+19
|
* Issue 6665: Fix fnmatch to properly match filenames with newlines in them.Gregory P. Smith2009-08-163-2/+11
|
* Wrong place for issue #6244.Guilherme Polo2009-08-161-2/+2
|
* Issue #6244: Allow detect_tkinter to look for Tcl/Tk 8.6.Guilherme Polo2009-08-162-2/+4
|
* Refined section on logging to one file from multiple processes.Vinay Sajip2009-08-151-0/+6
|
* Added section on logging to one file from multiple processes.Vinay Sajip2009-08-151-0/+16
|
* better col_offsets for "for" statements with tuple unpacking #6704Benjamin Peterson2009-08-154-12/+24
| | | | Patch from Frank Wierzbicki.
* Force the http connection to close after any request returned whenGregory P. Smith2009-08-151-1/+14
| | | | | | | buffering=True as our buffered data is not known to the HTTPConnection and may contain data needed by a future request if the connection were left open. See http://bugs.python.org/issue2576 and http://bugs.python.org/issue4879.
* #6707 fix a crash with dir() on an uninitialized moduleBenjamin Peterson2009-08-153-3/+8
|
* Clarifying Entry.selection_present's docstring.Guilherme Polo2009-08-141-1/+2
|
* Issue #1135: Add the XView and YView mix-ins to avoid duplicatingGuilherme Polo2009-08-144-131/+54
| | | | the xview* and yview* methods.
* Issue #3926: Fix the usage of the new showwarnings and formatwarning.Guilherme Polo2009-08-142-15/+16
|
* Issue #3344: Replace itertools.count by enumerate.Guilherme Polo2009-08-141-3/+2
|
* Added versionchanged notices for optional 'delay' parameter to file handler ↵Vinay Sajip2009-08-141-0/+12
| | | | classes.
* Expat could crash if given the wrong kind of input by never stopping itsBrett Cannon2009-08-134-3/+26
| | | | | | tokenizing step. Thanks to Ivan Krstić for the patch.
* Fix issue1628205: Socket file objects returned by socket.socket.makefile() nowGregory P. Smith2009-08-134-14/+146
| | | | | properly handles EINTR within the read, readline, write & flush methods. The socket.sendall() method now properly handles interrupted system calls.
* Remove potentially confusing sentence in __mangling description.Georg Brandl2009-08-131-5/+2
|
* Use locale.format_string() for more than one specifier.Georg Brandl2009-08-131-2/+2
|
* #6679: Remove mention that sub supports no flags.Georg Brandl2009-08-131-3/+1
|
* comment typo fixGregory P. Smith2009-08-121-1/+1
|
* Issue #6629: Fix a data corruption issue in the new `io` package, which couldAntoine Pitrou2009-08-063-0/+38
| | | | | | | | occur when writing to a BufferedRandom object (e.g. a file opened in "rb+" or "wb+" mode) after having buffered a certain amount of data for reading. This bug was not present in the pure Python implementation. Yes, this is a serious issue.
* #6658: fix two typos.Georg Brandl2009-08-061-2/+2
|
* Fix punctuation and one copy-paste error.Georg Brandl2009-08-061-13/+10
|
* Fix base keyword arg name for int() and long().Georg Brandl2009-08-061-6/+7
|
* Fix issue 4660: spurious task_done errors in multiprocessing, remove doc ↵Jesse Noller2009-08-064-8/+20
| | | | note for from_address
* Typo.Guilherme Polo2009-08-051-1/+1
|
* Easier reference to find (at least while svn continues being used).Guilherme Polo2009-08-051-1/+1
|
* Issue #6620: Slightly safer code for _grouping_intervals in the localeMark Dickinson2009-08-041-0/+3
| | | | | module. Fixes a 'possible use before assignment' warning from pylint. Thanks Vincent Legoll.
* Add donation link to docs footer.Georg Brandl2009-08-041-0/+11
|
* Issue #6644: Fix compile error on AIX.Mark Dickinson2009-08-041-1/+1
|
* Issue 6637: defaultdict.copy() failed with an empty factory.Raymond Hettinger2009-08-042-1/+11
|
* Adding tests derived from the Jython project. These are primarily tests ofFrank Wierzbicki2009-08-021-0/+116
| | | | | | | 'single' statements with partial sentences (so they test things like "try:" in interactive mode). Others tests hit areas that previously failed in Jython. A couple still fail in Jython, mainly due to the difficulty of parsing partial sentences (but should be fixed by Jython 2.6).
* Issue #6619: Remove duplicate 'isgenerator' function from inspect module.Mark Dickinson2009-08-022-4/+1
| | | | Thanks Vincent Legoll.
* Issue #6595: Allow Decimal constructor to accept non-European decimalMark Dickinson2009-08-024-20/+29
| | | | | digits, as recommended by the specification. (Backport of r74279 from py3k.)
* - Issue #6624: yArg_ParseTuple with "s" format when parsing argument withSean Reifscheider2009-08-012-1/+4
| | | | NUL: Bogus TypeError detail string.
* Issue 6330: Fix --enable-unicode=ucs4.Eric Smith2009-07-301-3/+20
|
* Documentation fix for change introduced in r71832Mark Dickinson2009-07-301-1/+1
|
* Rewrite the section about classes a bit; mostly tidbits, and a larger update ↵Georg Brandl2009-07-291-71/+72
| | | | to the section about "private" variables to reflect the Pythonic consensus better.
* Fix a few markup glitches.Georg Brandl2009-07-291-9/+10
|
* Fix some markup and small factual glitches found by M. Markert.Georg Brandl2009-07-292-14/+18
|
* Add a link to readline, and mention IPython and bpython.Georg Brandl2009-07-291-4/+14
|
* #6336: Add nb_divide.Georg Brandl2009-07-291-0/+1
|
* #6591: add reference to ioctl in fcntl module for platforms other than Windows.Georg Brandl2009-07-291-0/+3
|
* #6593: fix link targets.Georg Brandl2009-07-291-2/+2
|
* #6511: ZipFile will now raise BadZipfile when opening an empty or tiny file,Amaury Forgeot d'Arc2009-07-283-1/+17
| | | | like it does for larger invalid files.
* "Fix" for the refleak report: the ABC classes are now in the _pyio moduleAmaury Forgeot d'Arc2009-07-281-2/+2
|
* Issue #6561: '\d' regular expression should not match characters ofMark Dickinson2009-07-284-2/+28
| | | | | category [No]; only those of category [Nd]. (Backport of r74237 from py3k.)
* Clarify quote_plus() usage.Georg Brandl2009-07-281-2/+3
|
* Remove leading blank line from cmath.rstMark Dickinson2009-07-281-1/+0
|
* Issue #6458: Reorganize cmath documentation into sections (similar toMark Dickinson2009-07-281-97/+108
| | | | | the way that the math documentation is organized); clarify section on conversions to and from polar coordinates.