- 06 Dec, 2010 3 commits
-
-
R. David Murray authored
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r85674 | r.david.murray | 2010-10-17 19:12:16 -0400 (Sun, 17 Oct 2010) | 2 lines Tighten up 'byte string' wording in base64 docs. ........
-
R. David Murray authored
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r85146 | r.david.murray | 2010-10-01 16:38:33 -0400 (Fri, 01 Oct 2010) | 3 lines Fix docstring typo. ........
-
R. David Murray authored
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r85130 | r.david.murray | 2010-09-30 22:08:02 -0400 (Thu, 30 Sep 2010) | 2 lines Fix a couple spelling errors in comments and delete redundant __len__ def. ........
-
- 04 Dec, 2010 7 commits
-
-
R. David Murray authored
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r85086 | r.david.murray | 2010-09-28 21:08:05 -0400 (Tue, 28 Sep 2010) | 4 lines #7110: have regrtest print test failures and tracebacks to stderr not stdout. Patch by Sandro Tosi. ........
-
Eric Smith authored
........ r87039 | eric.smith | 2010-12-04 08:27:34 -0500 (Sat, 04 Dec 2010) | 1 line Removed static function complex_format, moved it into complex_repr. Modified tests to check both str and repr, which are the same for complex. ........ r87040 | eric.smith | 2010-12-04 08:32:18 -0500 (Sat, 04 Dec 2010) | 1 line Issue #10624: Move requires_IEEE_754 into test.support. I'll fix up other uses of it shortly. ........ r87043 | eric.smith | 2010-12-04 10:17:38 -0500 (Sat, 04 Dec 2010) | 1 line Issue #10624: Use support.requires_IEEE_754 in all appropriate tests. ........ r87044 | eric.smith | 2010-12-04 10:26:13 -0500 (Sat, 04 Dec 2010) | 1 line Issue 10625: Add tests for negative zeros in complex str and repr. ........
-
Mark Dickinson authored
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r87032 | mark.dickinson | 2010-12-04 12:25:30 +0000 (Sat, 04 Dec 2010) | 3 lines Issue #10596: Fix float.__mod__ to have the same behaviour as float.__divmod__ with respect to signed zeros. ........
-
Mark Dickinson authored
-
Mark Dickinson authored
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r87032 | mark.dickinson | 2010-12-04 12:25:30 +0000 (Sat, 04 Dec 2010) | 3 lines Issue #10596: Fix float.__mod__ to have the same behaviour as float.__divmod__ with respect to signed zeros. ........
-
Senthil Kumaran authored
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r87014 | senthil.kumaran | 2010-12-04 17:44:30 +0800 (Sat, 04 Dec 2010) | 3 lines Add the NEWS entry for issue7904 ........
-
Benjamin Peterson authored
svn+ssh://pythondev@svn.python.org/python/branches/py3k ................ r87002 | martin.v.loewis | 2010-12-03 17:11:07 -0600 (Fri, 03 Dec 2010) | 21 lines Merged revisions 85551,86156-86157,86464 via svnmerge from svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3 ........ r85551 | benjamin.peterson | 2010-10-15 23:57:29 +0200 (Fr, 15 Okt 2010) | 1 line escape() is now in the html module ........ r86156 | georg.brandl | 2010-11-04 09:34:57 +0100 (Do, 04 Nov 2010) | 1 line Consistency fixes in option parser help texts. ........ r86157 | georg.brandl | 2010-11-04 09:35:30 +0100 (Do, 04 Nov 2010) | 1 line #10286: fix urllib class names. ........ r86464 | benjamin.peterson | 2010-11-14 16:28:52 +0100 (So, 14 Nov 2010) | 1 line match only .py files #10416 ........ ................
-
- 03 Dec, 2010 3 commits
-
-
Éric Araujo authored
........ r86985 | eric.araujo | 2010-12-03 20:19:17 +0100 (ven., 03 déc. 2010) | 5 lines Fix incorrect use of gettext in argparse (#10497). Steven, the maintainer of argparse, agreed to have this committed without tests for now, since the fix is obvious. See the bug log. ........
-
Antoine Pitrou authored
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86981 | antoine.pitrou | 2010-12-03 19:41:39 +0100 (ven., 03 déc. 2010) | 5 lines Issue #10478: Reentrant calls inside buffered IO objects (for example by way of a signal handler) now raise a RuntimeError instead of freezing the current process. ........ r86984 | antoine.pitrou | 2010-12-03 20:14:17 +0100 (ven., 03 déc. 2010) | 3 lines Add an "advanced topics" section to the io doc. ........
-
R. David Murray authored
........ r86952 | r.david.murray | 2010-12-02 23:06:39 -0500 (Thu, 02 Dec 2010) | 12 lines #1486713: Add a tolerant mode to HTMLParser. The motivation for adding this option is that the the functionality it provides used to be provided by sgmllib in Python2, and was used by, for example, BeautifulSoup. Without this option, the Python3 version of BeautifulSoup and the many programs that use it are crippled. The original patch was by 'kxroberto'. I modified it heavily but kept his heuristics and test. I also added additional heuristics to fix #975556, #1046092, and part of #6191. This patch should be completely backward compatible: the behavior with the default strict=True is unchanged. ........ r86953 | r.david.murray | 2010-12-02 23:26:18 -0500 (Thu, 02 Dec 2010) | 2 lines Add missing versionchanged, correct 'throw' wording to 'raise'. ........
-
- 02 Dec, 2010 3 commits
-
-
Éric Araujo authored
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86940 | eric.araujo | 2010-12-02 23:16:19 +0100 (jeu., 02 déc. 2010) | 2 lines Fix wrong test code in test_csv (#10602) ........
-
R. David Murray authored
........ r86936 | r.david.murray | 2010-12-02 16:47:19 -0500 (Thu, 02 Dec 2010) | 4 lines #8989: add 'domain' keyword to make_msgid. Patch by Adrian von Bidder. ........
-
R. David Murray authored
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86925 | r.david.murray | 2010-12-01 21:58:07 -0500 (Wed, 01 Dec 2010) | 4 lines #10464: fix netrc handling of lines with embedded '#" characters. Patch by Xuanji Li. ........
-
- 30 Nov, 2010 5 commits
-
-
Daniel Stutzbach authored
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86896 | daniel.stutzbach | 2010-11-30 09:49:53 -0800 (Tue, 30 Nov 2010) | 1 line Fix typo: "ofbytes" should be "of bytes" ........
-
Éric Araujo authored
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86892 | eric.araujo | 2010-11-30 18:20:31 +0100 (mar., 30 nov. 2010) | 2 lines Let’s keep “throw” for the generator method and use “raise” elsewhere. ........
-
Georg Brandl authored
........ r86883 | georg.brandl | 2010-11-30 10:30:54 +0100 (Di, 30 Nov 2010) | 1 line Include structseq.h in Python.h, and remove now-redundant includes in individual sources. ........ r86884 | georg.brandl | 2010-11-30 10:41:01 +0100 (Di, 30 Nov 2010) | 1 line Remove redundant includes of headers that are already included by Python.h. ........
-
Raymond Hettinger authored
-
Alexander Belopolsky authored
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86857 | raymond.hettinger | 2010-11-28 22:56:12 -0500 (Sun, 28 Nov 2010) | 1 line Issue #10565: Iterator ABC should require both __next__ and __iter__. ........
-
- 29 Nov, 2010 3 commits
-
-
Senthil Kumaran authored
........ r86864 | senthil.kumaran | 2010-11-29 20:42:29 +0800 (Mon, 29 Nov 2010) | 3 lines Remove the comment used while testing. ........
-
Senthil Kumaran authored
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86861 | senthil.kumaran | 2010-11-29 19:54:17 +0800 (Mon, 29 Nov 2010) | 5 lines Fix #10561 - Fix pdb behavior. Delete the breakpoints by breakpoint number. Handle multiple breakpoints at same line. Update docs/test. Patch by Xavier de Gaye. ........
-
Ezio Melotti authored
........ r86845 | ezio.melotti | 2010-11-28 06:18:54 +0200 (Sun, 28 Nov 2010) | 1 line Add callable() to the built-in functions table. ........ r86855 | raymond.hettinger | 2010-11-29 03:38:25 +0200 (Mon, 29 Nov 2010) | 1 line Do not add an obsolete unittest name to Py3.2. ........ r86856 | ezio.melotti | 2010-11-29 04:02:10 +0200 (Mon, 29 Nov 2010) | 1 line Use assertCountEqual instead of assertItemsEqual ........
-
- 28 Nov, 2010 1 commit
-
-
Benjamin Peterson authored
-
- 27 Nov, 2010 5 commits
-
-
Antoine Pitrou authored
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86838 | antoine.pitrou | 2010-11-27 21:40:43 +0100 (sam., 27 nov. 2010) | 3 lines Make doc for PyErr_Format() up to date. ........
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Stefan Krah authored
........ r86829 | stefan.krah | 2010-11-27 12:44:18 +0100 (Sat, 27 Nov 2010) | 1 line Fix additional leaks. ........
-
- 26 Nov, 2010 10 commits
-
-
Hirokazu Yamamoto authored
........ r86168 | hirokazu.yamamoto | 2010-11-05 00:21:59 +0900 (金, 05 11 2010) | 1 line Updated PC/VS8.0. (mainly to follow r86137: use temporary dir in make_buildinfo.c) ........ r86211 | hirokazu.yamamoto | 2010-11-06 02:24:13 +0900 (土, 06 11 2010) | 1 line Fixed socket_gethostname() on windows. ........ r86300 | hirokazu.yamamoto | 2010-11-07 23:29:26 +0900 (日, 07 11 2010) | 1 line Issue #6317: Now winsound.PlaySound only accepts unicode with MvL's approval. ........
-
Georg Brandl authored
........ r86794 | georg.brandl | 2010-11-26 12:50:13 +0100 (Fr, 26 Nov 2010) | 1 line #10526: fix typo. ........ r86797 | georg.brandl | 2010-11-26 13:05:27 +0100 (Fr, 26 Nov 2010) | 1 line Modernize code in effective(). ........ r86800 | georg.brandl | 2010-11-26 13:10:06 +0100 (Fr, 26 Nov 2010) | 1 line Typo fix. ........
-
Georg Brandl authored
svn+ssh://svn.python.org/python/branches/py3k ........ r86795 | georg.brandl | 2010-11-26 12:55:48 +0100 (Fr, 26 Nov 2010) | 1 line Use PyLong_FromLong where appropriate. ........ r86798 | georg.brandl | 2010-11-26 13:05:48 +0100 (Fr, 26 Nov 2010) | 1 line #10420: fix docs of bdb.effective(). ........ r86799 | georg.brandl | 2010-11-26 13:08:19 +0100 (Fr, 26 Nov 2010) | 1 line Remove parenthetical remark that is confusing now that the module is not named "__builtin__" anymore. ........ r86801 | georg.brandl | 2010-11-26 13:12:14 +0100 (Fr, 26 Nov 2010) | 1 line Better example for os.system(): do not change the system time. ........
-
Stefan Krah authored
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86808 | stefan.krah | 2010-11-26 17:16:47 +0100 (Fri, 26 Nov 2010) | 1 line Further indentation cleanup. ........
-
Stefan Krah authored
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86804 | stefan.krah | 2010-11-26 13:58:05 +0100 (Fri, 26 Nov 2010) | 1 line Issue #10383: Fix two leaks. ........
-
Matthias Klose authored
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r85645 | matthias.klose | 2010-10-17 15:22:33 +0200 (Sun, 17 Oct 2010) | 2 lines - Accept Oracle Berkeley DB 5.0 and 5.1 as backend for the dbm extension. ........
-
Stefan Krah authored
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86791 | stefan.krah | 2010-11-26 11:54:09 +0100 (Fri, 26 Nov 2010) | 1 line Indentation cleanup. ........
-
Georg Brandl authored
Merged revisions 86134,86315-86316,86390,86424-86425,86428,86550,86561-86562,86564-86565,86705,86708,86713 via svnmerge from svn+ssh://svn.python.org/python/branches/py3k ........ r86134 | georg.brandl | 2010-11-03 08:41:00 +0100 (Mi, 03 Nov 2010) | 1 line A newline in lineno output breaks pyframe output. ........ r86315 | georg.brandl | 2010-11-08 12:05:18 +0100 (Mo, 08 Nov 2010) | 1 line Fix latex conversion glitch in property/feature descriptions. ........ r86316 | georg.brandl | 2010-11-08 12:08:35 +0100 (Mo, 08 Nov 2010) | 1 line Fix typo. ........ r86390 | georg.brandl | 2010-11-10 08:57:10 +0100 (Mi, 10 Nov 2010) | 1 line Fix typo. ........ r86424 | georg.brandl | 2010-11-12 07:19:48 +0100 (Fr, 12 Nov 2010) | 1 line Build a PDF of the FAQs too. ........ r86425 | georg.brandl | 2010-11-12 07:20:12 +0100 (Fr, 12 Nov 2010) | 1 line #10008: Fix duplicate index entry. ........ r86428 | georg.brandl | 2010-11-12 09:09:26 +0100 (Fr, 12 Nov 2010) | 1 line Fix weird line block in table. ........ r86550 | georg.brandl | 2010-11-20 11:24:34 +0100 (Sa, 20 Nov 2010) | 1 line Fix rst markup errors. ........ r86561 | georg.brandl | 2010-11-20 12:47:10 +0100 (Sa, 20 Nov 2010) | 1 line #10460: Update indent.pro to match PEP 7 better. ........ r86562 | georg.brandl | 2010-11-20 14:44:41 +0100 (Sa, 20 Nov 2010) | 1 line #10439: document PyCodec C APIs. ........ r86564 | georg.brandl | 2010-11-20 15:08:53 +0100 (Sa, 20 Nov 2010) | 1 line #10460: an even better indent.pro. ........ r86565 | georg.brandl | 2010-11-20 15:16:17 +0100 (Sa, 20 Nov 2010) | 1 line socket.gethostbyname(socket.gethostname()) can fail when host name resolution is not set up correctly; do not fail test_socket if this is the case. ........ r86705 | georg.brandl | 2010-11-23 08:54:19 +0100 (Di, 23 Nov 2010) | 1 line #10468: document Unicode exception creation and access functions. ........ r86708 | georg.brandl | 2010-11-23 09:37:54 +0100 (Di, 23 Nov 2010) | 2 lines #10511: clarification of what heaps are; suggested by Johannes Hoff. ........ r86713 | georg.brandl | 2010-11-23 19:14:57 +0100 (Di, 23 Nov 2010) | 1 line assert.h is also included. Thanks to Savio Sena. ........
-
Georg Brandl authored
Blocked revisions 86256,86324,86409,86427,86429,86444-86446,86451,86479-86480,86608,86619,86725 via svnmerge ........ r86256 | georg.brandl | 2010-11-06 08:19:35 +0100 (Sa, 06 Nov 2010) | 1 line #10334: add a role to refer to Python source files in SVN. ........ r86324 | georg.brandl | 2010-11-08 17:57:52 +0100 (Mo, 08 Nov 2010) | 1 line Fix next version name. ........ r86409 | georg.brandl | 2010-11-11 08:26:40 +0100 (Do, 11 Nov 2010) | 1 line Review the new configparser docs. ........ r86427 | georg.brandl | 2010-11-12 09:09:11 +0100 (Fr, 12 Nov 2010) | 1 line Switch to Sphinx 1.0.5. ........ r86429 | georg.brandl | 2010-11-12 09:57:12 +0100 (Fr, 12 Nov 2010) | 1 line Add a deprecated-removed directive that allows to give the version of removal for deprecations. ........ r86444 | georg.brandl | 2010-11-13 07:36:58 +0100 (Sa, 13 Nov 2010) | 1 line Update pydoc topics. ........ r86445 | georg.brandl | 2010-11-13 07:38:37 +0100 (Sa, 13 Nov 2010) | 1 line Ignore suspicious-ignore file. ........ r86446 | georg.brandl | 2010-11-13 07:39:58 +0100 (Sa, 13 Nov 2010) | 1 line Bump to 3.2a4. ........ r86451 | georg.brandl | 2010-11-13 14:25:40 +0100 (Sa, 13 Nov 2010) | 1 line Minor edits. ........ r86479 | georg.brandl | 2010-11-16 16:15:29 +0100 (Di, 16 Nov 2010) | 1 line Add stub for PEP 3148. ........ r86480 | georg.brandl | 2010-11-16 16:15:56 +0100 (Di, 16 Nov 2010) | 1 line Post-release bumps. ........ r86608 | georg.brandl | 2010-11-20 20:54:36 +0100 (Sa, 20 Nov 2010) | 1 line #9724: add nonlocal to pydoc topics. ........ r86619 | georg.brandl | 2010-11-20 23:40:10 +0100 (Sa, 20 Nov 2010) | 1 line Add error handling in range_count. ........ r86725 | georg.brandl | 2010-11-24 10:09:29 +0100 (Mi, 24 Nov 2010) | 1 line Remove UTF-8 BOM. ........
-
Georg Brandl authored
Blocked revisions 85680-85683,85692,85787-85789,85807,85822,85824,85828,85856,85874,85876-85877,85888-85889,85910,85979 via svnmerge ........ r85680 | georg.brandl | 2010-10-18 09:27:55 +0200 (Mo, 18 Okt 2010) | 1 line Fix compiler warning about unused static function. ........ r85681 | georg.brandl | 2010-10-18 09:30:06 +0200 (Mo, 18 Okt 2010) | 1 line Fix type of hash function. ........ r85682 | georg.brandl | 2010-10-18 09:32:48 +0200 (Mo, 18 Okt 2010) | 1 line Remove unneeded casts to hashfunc. ........ r85683 | georg.brandl | 2010-10-18 09:35:09 +0200 (Mo, 18 Okt 2010) | 1 line Remove more unneeded casts to hashfunc. ........ r85692 | georg.brandl | 2010-10-18 14:24:53 +0200 (Mo, 18 Okt 2010) | 1 line Fix hash function type. ........ r85787 | georg.brandl | 2010-10-22 08:28:01 +0200 (Fr, 22 Okt 2010) | 1 line #10166: rewrite self-recursion to iteration in pstats.Stats.add(). Also add a unittest and a stats test file. ........ r85788 | georg.brandl | 2010-10-22 08:29:21 +0200 (Fr, 22 Okt 2010) | 1 line Make top_level attribute a set instead of a dict with None values. ........ r85789 | georg.brandl | 2010-10-22 08:35:59 +0200 (Fr, 22 Okt 2010) | 1 line Refactor interesting use of try-finally. ........ r85807 | georg.brandl | 2010-10-23 19:31:52 +0200 (Sa, 23 Okt 2010) | 1 line #6518: enable context manager protocol for ossaudiodev types. ........ r85822 | georg.brandl | 2010-10-24 16:21:42 +0200 (So, 24 Okt 2010) | 1 line Add casts (one needed, one for consistency). ........ r85824 | georg.brandl | 2010-10-24 17:11:22 +0200 (So, 24 Okt 2010) | 6 lines Add a new warning gategory, ResourceWarning, as discussed on python-dev. It is silent by default, except when configured --with-pydebug. Emit this warning from the GC shutdown procedure, rather than just printing to stderr. ........ r85828 | georg.brandl | 2010-10-24 22:47:32 +0200 (So, 24 Okt 2010) | 1 line These are true PyCFunctions, after adding the second argument to oss_self, no need to cast. ........ r85856 | georg.brandl | 2010-10-27 09:27:06 +0200 (Mi, 27 Okt 2010) | 1 line #5975: add unix_dialect to csv module. ........ r85874 | georg.brandl | 2010-10-28 08:42:33 +0200 (Do, 28 Okt 2010) | 1 line #7351: add more consistent exception name alias. ........ r85876 | georg.brandl | 2010-10-28 11:03:20 +0200 (Do, 28 Okt 2010) | 1 line #10218: return timeout status from Condition.wait, mirroring other primitives' behavior. ........ r85877 | georg.brandl | 2010-10-28 11:24:56 +0200 (Do, 28 Okt 2010) | 1 line Condition.wait now returns bool. ........ r85888 | georg.brandl | 2010-10-28 15:01:06 +0200 (Do, 28 Okt 2010) | 1 line Support new Condition return value in the multiprocessing version. ........ r85889 | georg.brandl | 2010-10-28 15:07:50 +0200 (Do, 28 Okt 2010) | 1 line Review new Barrier docs. ........ r85910 | georg.brandl | 2010-10-29 07:30:17 +0200 (Fr, 29 Okt 2010) | 1 line Port suspicious markup builder and patchlevel.py so that they can be used with Python 2 and 3 without conversion. ........ r85979 | georg.brandl | 2010-10-30 16:33:28 +0200 (Sa, 30 Okt 2010) | 1 line Fix test_mailbox by supporting context manager protocol for get_file() returns. ........
-