summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Merged revisions 74446-74449 via svnmerge fromGuilherme Polo2009-08-147-150/+74
| | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev/python/trunk ........ r74446 | guilherme.polo | 2009-08-14 10:53:41 -0300 (Fri, 14 Aug 2009) | 1 line Issue #3344: Replace itertools.count by enumerate. ........ r74447 | guilherme.polo | 2009-08-14 11:03:07 -0300 (Fri, 14 Aug 2009) | 1 line Issue #3926: Fix the usage of the new showwarnings and formatwarning. ........ r74448 | guilherme.polo | 2009-08-14 11:36:45 -0300 (Fri, 14 Aug 2009) | 3 lines Issue #1135: Add the XView and YView mix-ins to avoid duplicating the xview* and yview* methods. ........ r74449 | guilherme.polo | 2009-08-14 11:43:43 -0300 (Fri, 14 Aug 2009) | 1 line Clarifying Entry.selection_present's docstring. ........
* Recorded merge of revisions 74429 via svnmerge fromGeorg Brandl2009-08-140-0/+0
| | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r74429 | brett.cannon | 2009-08-13 21:27:12 +0200 (Do, 13 Aug 2009) | 5 lines Expat could crash if given the wrong kind of input by never stopping its tokenizing step. Thanks to Ivan Krstić for the patch. ........
* Backport of r77429. Not merged/blocked as svnmerge.py is not liking me right ↵Brett Cannon2009-08-134-3/+25
| | | | now.
* Merged revisions 74411 via svnmerge fromGeorg Brandl2009-08-131-5/+2
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r74411 | georg.brandl | 2009-08-13 14:57:25 +0200 (Do, 13 Aug 2009) | 2 lines Remove potentially confusing sentence in __mangling description. ........
* Merged revisions 74404 via svnmerge fromGeorg Brandl2009-08-131-2/+2
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r74404 | georg.brandl | 2009-08-13 14:05:52 +0200 (Do, 13 Aug 2009) | 1 line Use locale.format_string() for more than one specifier. ........
* Fix duplicate sentence.Georg Brandl2009-08-131-3/+1
|
* #6694: fix old function names.Georg Brandl2009-08-131-2/+2
|
* Merged revisions 74328,74332-74333,74365 via svnmerge fromGeorg Brandl2009-08-134-21/+16
| | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r74328 | georg.brandl | 2009-08-06 17:06:25 +0200 (Do, 06 Aug 2009) | 1 line Fix base keyword arg name for int() and long(). ........ r74332 | georg.brandl | 2009-08-06 19:23:21 +0200 (Do, 06 Aug 2009) | 1 line Fix punctuation and one copy-paste error. ........ r74333 | georg.brandl | 2009-08-06 19:43:55 +0200 (Do, 06 Aug 2009) | 1 line #6658: fix two typos. ........ r74365 | georg.brandl | 2009-08-13 09:48:05 +0200 (Do, 13 Aug 2009) | 1 line #6679: Remove mention that sub supports no flags. ........
* #6126: fix pdb stepping and breakpoints by giving the executed code the ↵Georg Brandl2009-08-132-2/+5
| | | | correct filename; this used execfile() in 2.x which did this automatically.
* search through db.h in binary #6680Benjamin Peterson2009-08-121-4/+4
|
* fix typo in c++ ifdefBenjamin Peterson2009-08-121-1/+1
|
* Fix typoAntoine Pitrou2009-08-061-1/+1
|
* Merged revisions 74336 via svnmerge fromAntoine Pitrou2009-08-063-0/+38
| | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r74336 | antoine.pitrou | 2009-08-06 22:18:29 +0200 (jeu., 06 août 2009) | 8 lines Issue #6629: Fix a data corruption issue in the new `io` package, which could 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. ........
* typoPhilip Jenvey2009-08-061-1/+1
|
* #6648: mention surrogateescape handler where all standard handlers are listed.Georg Brandl2009-08-061-3/+4
|
* Issue #6622: Fix 'variable referenced before assignment' bug in POP3.apop.Mark Dickinson2009-08-063-4/+14
| | | | Thanks Vincent Legoll.
* Issue 5449: Fix io.BytesIO to not accept arbitrary keywordsAlexandre Vassalotti2009-08-042-1/+8
| | | | Patch contributed by Erick Tryzelaar.
* Merged revisions 74312 via svnmerge fromMark Dickinson2009-08-041-0/+3
| | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r74312 | mark.dickinson | 2009-08-04 22:56:04 +0100 (Tue, 04 Aug 2009) | 4 lines Issue #6620: Slightly safer code for _grouping_intervals in the locale module. Fixes a 'possible use before assignment' warning from pylint. Thanks Vincent Legoll. ........
* Slightly improve buffer-related error message.Georg Brandl2009-08-042-2/+2
|
* Merged revisions 74307 via svnmerge fromGeorg Brandl2009-08-041-0/+11
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r74307 | georg.brandl | 2009-08-04 22:22:43 +0200 (Di, 04 Aug 2009) | 1 line Add donation link to docs footer. ........
* Merged revisions 74303 via svnmerge fromMark Dickinson2009-08-041-1/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r74303 | mark.dickinson | 2009-08-04 20:22:35 +0100 (Tue, 04 Aug 2009) | 2 lines Issue #6644: Fix compile error on AIX. ........
* Issue 6637: defaultdict.copy() failed with an empty factory.Raymond Hettinger2009-08-042-1/+11
|
* #6618: fix invalid 3k syntax.Georg Brandl2009-08-031-1/+1
|
* Merged revisions 74291 via svnmerge fromFrank Wierzbicki2009-08-021-0/+116
| | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r74291 | frank.wierzbicki | 2009-08-02 16:37:48 -0400 (Sun, 02 Aug 2009) | 6 lines Adding tests derived from the Jython project. These are primarily tests of '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). ........
* Issues #2715, #6621: Remove unused and undefined references to FSSpecMark Dickinson2009-08-022-13/+2
| | | | from binhex module. Thanks Vincent Legoll.
* Merged revisions 74285 via svnmerge fromMark Dickinson2009-08-022-4/+1
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r74285 | mark.dickinson | 2009-08-02 16:40:11 +0100 (Sun, 02 Aug 2009) | 3 lines Issue #6619: Remove duplicate 'isgenerator' function from inspect module. Thanks Vincent Legoll. ........
* Blocked revisions 74281 via svnmergeMark Dickinson2009-08-020-0/+0
| | | | | | | | | | ........ r74281 | mark.dickinson | 2009-08-02 11:59:36 +0100 (Sun, 02 Aug 2009) | 4 lines Issue #6595: Allow Decimal constructor to accept non-European decimal digits, as recommended by the specification. (Backport of r74279 from py3k.) ........
* Issue #6595: Allow Decimal constructor to accept non-European decimal ↵Mark Dickinson2009-08-024-20/+28
| | | | digits, as recommended by the specification.
* - Issue #6624: yArg_ParseTuple with "s" format when parsing argument withSean Reifscheider2009-08-012-1/+4
| | | | NUL: Bogus TypeError detail string.
* Merged revisions 74269 via svnmerge fromEric Smith2009-07-301-3/+20
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r74269 | eric.smith | 2009-07-30 09:39:44 -0400 (Thu, 30 Jul 2009) | 1 line Issue 6330: Fix --enable-unicode=ucs4. ........
* Merged revisions 74265 via svnmerge fromMark Dickinson2009-07-301-1/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r74265 | mark.dickinson | 2009-07-30 11:00:10 +0100 (Thu, 30 Jul 2009) | 1 line Documentation fix for change introduced in r71832 ........
* Merged revisions 74075,74187,74197,74201,74216,74225 via svnmerge fromAlexandre Vassalotti2009-07-296-30/+45
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r74075 | georg.brandl | 2009-07-18 05:06:31 -0400 (Sat, 18 Jul 2009) | 1 line #6505: fix typos. ........ r74187 | benjamin.peterson | 2009-07-23 10:19:08 -0400 (Thu, 23 Jul 2009) | 1 line use bools for autoraise ........ r74197 | benjamin.peterson | 2009-07-24 22:03:48 -0400 (Fri, 24 Jul 2009) | 1 line clarify ........ r74201 | amaury.forgeotdarc | 2009-07-25 12:22:06 -0400 (Sat, 25 Jul 2009) | 2 lines Better name a variable: 'buf' seems to imply a mutable buffer. ........ r74216 | michael.foord | 2009-07-26 17:12:14 -0400 (Sun, 26 Jul 2009) | 1 line Issue 6581. Michael Foord ........ r74225 | kurt.kaiser | 2009-07-27 12:09:28 -0400 (Mon, 27 Jul 2009) | 5 lines 1. Clean workspace more thoughly before build. 2. Add url of branch we are building to 'results' webpage. (url is now available in $repo_path, could be added to failure email.) 3. Adjust permissions to improve upload reliability. ........
* Blocked revisions 74134,74147 via svnmergeAlexandre Vassalotti2009-07-290-0/+0
| | | | | | | | | | | | | ........ r74134 | thomas.heller | 2009-07-21 02:27:14 -0400 (Tue, 21 Jul 2009) | 3 lines Issue #6493: Fix a ctypes problem setting bitfields more than 31 bits wide. ........ r74147 | thomas.heller | 2009-07-21 15:04:02 -0400 (Tue, 21 Jul 2009) | 1 line Revert rev 74134, as it does not completely fixx issue #6493. ........
* Merged revisions ↵Alexandre Vassalotti2009-07-2919-147/+165
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 74074,74077,74111,74188,74192-74193,74200,74252-74253,74258-74261 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r74074 | georg.brandl | 2009-07-18 05:03:10 -0400 (Sat, 18 Jul 2009) | 1 line #6513: fix example code: warning categories are classes, not instances. ........ r74077 | georg.brandl | 2009-07-18 05:43:40 -0400 (Sat, 18 Jul 2009) | 1 line #6489: fix an ambiguity in getiterator() documentation. ........ r74111 | benjamin.peterson | 2009-07-20 09:30:10 -0400 (Mon, 20 Jul 2009) | 1 line remove docs for deprecated -p option ........ r74188 | benjamin.peterson | 2009-07-23 10:25:31 -0400 (Thu, 23 Jul 2009) | 1 line use bools ........ r74192 | georg.brandl | 2009-07-24 12:28:38 -0400 (Fri, 24 Jul 2009) | 1 line Fix arg types of et#. ........ r74193 | georg.brandl | 2009-07-24 12:46:38 -0400 (Fri, 24 Jul 2009) | 1 line Dont put "void" in signature for nullary functions. ........ r74200 | georg.brandl | 2009-07-25 09:02:15 -0400 (Sat, 25 Jul 2009) | 1 line #6571: add index entries for more operators. ........ r74252 | georg.brandl | 2009-07-29 12:06:31 -0400 (Wed, 29 Jul 2009) | 1 line #6593: fix link targets. ........ r74253 | georg.brandl | 2009-07-29 12:09:17 -0400 (Wed, 29 Jul 2009) | 1 line #6591: add reference to ioctl in fcntl module for platforms other than Windows. ........ r74258 | georg.brandl | 2009-07-29 12:57:05 -0400 (Wed, 29 Jul 2009) | 1 line Add a link to readline, and mention IPython and bpython. ........ r74259 | georg.brandl | 2009-07-29 13:07:21 -0400 (Wed, 29 Jul 2009) | 1 line Fix some markup and small factual glitches found by M. Markert. ........ r74260 | georg.brandl | 2009-07-29 13:15:20 -0400 (Wed, 29 Jul 2009) | 1 line Fix a few markup glitches. ........ r74261 | georg.brandl | 2009-07-29 13:50:25 -0400 (Wed, 29 Jul 2009) | 1 line Rewrite the section about classes a bit; mostly tidbits, and a larger update to the section about "private" variables to reflect the Pythonic consensus better. ........
* Blocked revisions 74256 via svnmergeGeorg Brandl2009-07-290-0/+0
| | | | | | | | ........ r74256 | georg.brandl | 2009-07-29 16:32:30 +0000 (Mi, 29 Jul 2009) | 1 line #6336: Add nb_divide. ........
* #6586: fix return/argument type doc for os.read() and os.write().Georg Brandl2009-07-291-4/+4
|
* Recorded merge of revisions 74228 via svnmerge fromR. David Murray2009-07-290-0/+0
| | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk Applied in r74226. ........ r74228 | raymond.hettinger | 2009-07-27 16:32:04 -0400 (Mon, 27 Jul 2009) | 1 line Issue 6573: Fix set.union() for cases where self is in the argument chain. ........
* Merged revisions 74239 via svnmerge fromGeorg Brandl2009-07-291-3/+3
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r74239 | georg.brandl | 2009-07-28 18:55:32 +0000 (Di, 28 Jul 2009) | 1 line Clarify quote_plus() usage. ........
* Merged revisions 74245 via svnmerge fromAmaury Forgeot d'Arc2009-07-283-2/+18
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r74245 | amaury.forgeotdarc | 2009-07-29 00:15:30 +0200 (mer., 29 juil. 2009) | 3 lines #6511: ZipFile will now raise BadZipfile when opening an empty or tiny file, like it does for larger invalid files. ........
* Blocked revisions 74243 via svnmergeAmaury Forgeot d'Arc2009-07-280-0/+0
| | | | | | | | ........ r74243 | amaury.forgeotdarc | 2009-07-28 22:47:55 +0200 (mar., 28 juil. 2009) | 2 lines "Fix" for the refleak report: the ABC classes are now in the _pyio module ........
* Blocked revisions 74240 via svnmergeMark Dickinson2009-07-280-0/+0
| | | | | | | | | | ........ r74240 | mark.dickinson | 2009-07-28 21:35:03 +0100 (Tue, 28 Jul 2009) | 4 lines Issue #6561: '\d' regular expression should not match characters of category [No]; only those of category [Nd]. (Backport of r74237 from py3k.) ........
* Issue #6561: '\d' in a regular expression should match only UnicodeMark Dickinson2009-07-284-6/+32
| | | | character category [Nd], not [No].
* Blocked revisions 74234 via svnmergeMark Dickinson2009-07-280-0/+0
| | | | | | | | ........ r74234 | mark.dickinson | 2009-07-28 17:45:13 +0100 (Tue, 28 Jul 2009) | 1 line Remove leading blank line from cmath.rst ........
* Merged revisions 74184,74230 via svnmerge fromMark Dickinson2009-07-281-87/+101
| | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r74184 | georg.brandl | 2009-07-23 08:08:58 +0100 (Thu, 23 Jul 2009) | 1 line #6548: dont suggest existence of real and imag functions in cmath. ........ r74230 | mark.dickinson | 2009-07-28 17:12:40 +0100 (Tue, 28 Jul 2009) | 4 lines Issue #6458: Reorganize cmath documentation into sections (similar to the way that the math documentation is organized); clarify section on conversions to and from polar coordinates. ........
* Issue 6573: Fix set.union() for cases where self is in the argument chain.Raymond Hettinger2009-07-273-1/+8
|
* - belated ACK for issue #6106Jack Diederich2009-07-271-0/+1
|
* Sync trunk and py3k versions of string formatting. Manual merge of r74219.Eric Smith2009-07-271-9/+16
|
* Blocked revisions 74219 via svnmergeEric Smith2009-07-270-0/+0
| | | | | | | | ........ r74219 | eric.smith | 2009-07-26 21:58:25 -0400 (Sun, 26 Jul 2009) | 1 line Sync trunk and py3k versions of string formatting. Will manually merge into py3k. ........
* - fix issue #6106, Telnet.process_rawq default handling of WILL/WONT/DO/DONTJack Diederich2009-07-264-1/+51
|
* Merged revisions 74205 via svnmerge fromGeorg Brandl2009-07-261-23/+26
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r74205 | georg.brandl | 2009-07-26 15:36:39 +0200 (So, 26 Jul 2009) | 1 line #6576: fix cross-refs in re docs. ........