| Commit message (Expand) | Author | Age | Files | Lines |
* | Add python-gdb.py and python.exe-gdb.py to distclean target in Makefile. | Mark Dickinson | 2010-04-02 | 1 | -0/+1 |
|
|
* | Add python.exe-gdb.py to svn:ignore, for the benefit of OS X developers. | Mark Dickinson | 2010-04-02 | 0 | -0/+0 |
|
|
* | Issue 8257: Decimal constructor to accept float. | Raymond Hettinger | 2010-04-02 | 3 | -11/+45 |
|
|
* | #6647: add note to two examples | Andrew M. Kuchling | 2010-04-02 | 1 | -2/+7 |
|
|
* | #6647: document that catch_warnings is not thread-safe | Andrew M. Kuchling | 2010-04-02 | 1 | -0/+8 |
|
|
* | Backport some robotparser test and skip the test if the external resource is ... | Florent Xicluna | 2010-04-02 | 1 | -5/+18 |
|
|
* | #4440: modernize a use of filter(), making it compatible with 3.x | Andrew M. Kuchling | 2010-04-02 | 1 | -1/+1 |
|
|
* | Issue 7994: Make object.__format__ with a non-empty format string a PendingDe... | Eric Smith | 2010-04-02 | 4 | -14/+106 |
|
|
* | Issue #8235: _socket: Add the constant ``SO_SETFIB``. SO_SETFIB is | Larry Hastings | 2010-04-02 | 2 | -0/+6 |
|
|
* | Capsule-related changes: | Larry Hastings | 2010-04-02 | 6 | -3/+62 |
|
|
* | Issue #7279: Make Decimal('nan') hashable. Decimal('snan') remains unhashable. | Mark Dickinson | 2010-04-02 | 3 | -6/+27 |
|
|
* | Issue #7279: Make comparisons involving a Decimal sNaN signal InvalidOperation. | Mark Dickinson | 2010-04-02 | 3 | -14/+60 |
|
|
* | #8012: clarification in generator glossary entry. | Georg Brandl | 2010-04-02 | 1 | -1/+3 |
|
|
* | Document PyImport_ExecCodeModuleEx(). | Georg Brandl | 2010-04-02 | 2 | -0/+21 |
|
|
* | Remove col-spanning cells in logging docs. | Georg Brandl | 2010-04-02 | 1 | -4/+4 |
|
|
* | Issue #2531: Make float-to-decimal comparisons return correct results. | Mark Dickinson | 2010-04-02 | 4 | -13/+74 |
|
|
* | Fix typo in unicode character name. | Georg Brandl | 2010-04-02 | 1 | -1/+1 |
|
|
* | #2768: add a note on how to get a file descriptor. | Georg Brandl | 2010-04-02 | 1 | -0/+4 |
|
|
* | Add 2.6.5. | Georg Brandl | 2010-04-02 | 1 | -0/+1 |
|
|
* | #7092: silence some py3k warnings | Florent Xicluna | 2010-04-02 | 4 | -6/+6 |
|
|
* | #7092: Drop the cmp argument. | Florent Xicluna | 2010-04-02 | 2 | -15/+2 |
|
|
* | #7092: Fix additional "-3" warnings in the idlelib package, and convert to ab... | Florent Xicluna | 2010-04-02 | 37 | -149/+169 |
|
|
* | Cleanup itertools recipes | Raymond Hettinger | 2010-04-02 | 1 | -8/+8 |
|
|
* | Add and update itertools recipes. | Raymond Hettinger | 2010-04-02 | 1 | -1/+23 |
|
|
* | #7092: Fix some -3 warnings, and fix Lib/platform.py when the path contains a... | Florent Xicluna | 2010-04-01 | 6 | -21/+22 |
|
|
* | Issue #8281: rename test_gdb_sample.py to gdb_sample.py, otherwise it gets pi... | Antoine Pitrou | 2010-04-01 | 1 | -0/+0 |
|
|
* | Issue #8276: PyEval_CallObject() is now only available in macro form. The | Antoine Pitrou | 2010-04-01 | 3 | -16/+5 |
|
|
* | Document link to Sorting HowTo | Raymond Hettinger | 2010-04-01 | 1 | -0/+3 |
|
|
* | Issue #8032: For gdb7, a python-gdb.py file is added to the build, | Martin v. Löwis | 2010-04-01 | 9 | -1/+2083 |
|
|
* | Fix a test_pydoc failure on Neal Norwitz's buildbot. | Brian Curtin | 2010-04-01 | 1 | -1/+1 |
|
|
* | A couple small grammar fixes in test.rst, and rewrite the | R. David Murray | 2010-04-01 | 1 | -38/+46 |
|
|
* | Add -Wd and -3 to the flags used to run the tests on Windows. | Ezio Melotti | 2010-03-31 | 1 | -1/+1 |
|
|
* | Add -Wd and -3 to the flags used to run the tests. | Ezio Melotti | 2010-03-31 | 1 | -2/+2 |
|
|
* | Replace catch_warnings with check_warnings when it makes sense. Use assertRa... | Florent Xicluna | 2010-03-31 | 21 | -226/+112 |
|
|
* | Fix typo | Florent Xicluna | 2010-03-31 | 1 | -1/+1 |
|
|
* | Issue #8268: Old-style classes (not just instances) now support weak | Antoine Pitrou | 2010-03-31 | 5 | -2/+29 |
|
|
* | Fix test for xml.etree when using a non-ascii path. And use check_warnings i... | Florent Xicluna | 2010-03-31 | 1 | -16/+26 |
|
|
* | - Issue #8233: When run as a script, py_compile.py optionally takes a single | Barry Warsaw | 2010-03-31 | 2 | -10/+31 |
|
|
* | Correct what was intended to be a single-tuple to just be a != check. | Brian Curtin | 2010-03-31 | 1 | -1/+1 |
|
|
* | Silence a py3k warning. | Ezio Melotti | 2010-03-31 | 1 | -3/+6 |
|
|
* | Revert r79179 and merge r75584 to explain how to implement a queue using coll... | Ezio Melotti | 2010-03-31 | 1 | -14/+13 |
|
|
* | Fix #8225. xml.etree was displaying an incorrect link when viewed in help. | Brian Curtin | 2010-03-31 | 2 | -1/+8 |
|
|
* | Revert rev. 79509; ctypes doesn't build on linux. | Thomas Heller | 2010-03-30 | 18 | -379/+2072 |
|
|
* | Removed merge tracking for "svnmerge" for | Thomas Heller | 2010-03-30 | 0 | -0/+0 |
|
|
* | Merged revisions 79115,79424,79491 via svnmerge from | Thomas Heller | 2010-03-30 | 18 | -2072/+379 |
|
|
* | Fix small error in r79502 | Antoine Pitrou | 2010-03-30 | 1 | -4/+4 |
|
|
* | Issue #8248: Add some tests for the bool type. Patch by Gregory Nofi. | Antoine Pitrou | 2010-03-30 | 5 | -0/+35 |
|
|
* | add inspect.getcallargs, which binds function arguments like a normal call #3135 | Benjamin Peterson | 2010-03-30 | 4 | -4/+306 |
|
|
* | fix ACKS: alphabetic order and UTF-8 | Florent Xicluna | 2010-03-30 | 1 | -3/+3 |
|
|
* | #8263: Now regrtest.py will report a failure if it receives a KeyboardInterru... | Florent Xicluna | 2010-03-30 | 2 | -12/+21 |
|
|