Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #7502: Fix equality comparison for DocTestCase instances. | Antoine Pitrou | 2011-12-18 | 1 | -0/+1 |
|\ | | | | | | | Patch by Cédric Krier. | ||||
| * | Issue #7502: Fix equality comparison for DocTestCase instances. | Antoine Pitrou | 2011-12-18 | 1 | -0/+1 |
| | | | | | | | | Patch by Cédric Krier. | ||||
* | | Issue #13522: document error return values of some float and complex C API ↵ | Antoine Pitrou | 2011-12-18 | 1 | -0/+1 |
|\ \ | |/ | | | | | functions. | ||||
| * | Issue #13522: document error return values of some float and complex C API ↵ | Antoine Pitrou | 2011-12-18 | 1 | -0/+1 |
| | | | | | | | | functions. | ||||
* | | Issue #11231: Fix bytes and bytearray docstrings | Victor Stinner | 2011-12-17 | 1 | -0/+1 |
|\ \ | |/ | | | | | Patch written by Brice Berna. | ||||
| * | Issue #11231: Fix bytes and bytearray docstrings | Victor Stinner | 2011-12-17 | 1 | -0/+1 |
| | | | | | | | | Patch written by Brice Berna. | ||||
* | | Issue #13530: Document os.lseek() result | Victor Stinner | 2011-12-17 | 1 | -0/+1 |
|\ \ | |/ | | | | | Patch written by Jérémy Anger. | ||||
| * | Issue #13530: Document os.lseek() result | Victor Stinner | 2011-12-17 | 1 | -0/+1 |
| | | | | | | | | Patch written by Jérémy Anger. | ||||
* | | Issue #12809: Expose IP_TRANSPARENT in the socket module. Patch by Michael | Charles-François Natali | 2011-12-17 | 1 | -0/+1 |
| | | | | | | | | Farrell. | ||||
* | | Add ACKS entry for 57f0af61da53. | Antoine Pitrou | 2011-12-16 | 1 | -0/+1 |
| | | |||||
* | | improve abstract property support (closes #11610) | Benjamin Peterson | 2011-12-15 | 1 | -0/+1 |
| | | | | | | | | Thanks to Darren Dale for patch. | ||||
* | | Issue #8641: Update IDLE 3 syntax coloring to recognize b".." and not u"..". | Ned Deily | 2011-12-07 | 1 | -0/+1 |
|\ \ | |/ | | | | | (Patch by Tal Einat) | ||||
| * | Issue #8641: Update IDLE 3 syntax coloring to recognize b".." and not u"..". | Ned Deily | 2011-12-07 | 1 | -0/+1 |
| | | | | | | | | (Patch by Tal Einat) | ||||
* | | Issue #13464: Add a readinto() method to http.client.HTTPResponse. | Antoine Pitrou | 2011-12-06 | 1 | -0/+1 |
| | | | | | | | | Patch by Jon Kuhn. | ||||
* | | Issue #12612: Add some Valgrind suppressions for 64-bit machines. Patch by Paul | Charles-François Natali | 2011-12-03 | 1 | -0/+1 |
| | | | | | | | | Price. | ||||
* | | Credit Per Øyvind Karlsen for the initial implementation of the lzma module ↵ | Nadeem Vawda | 2011-11-30 | 1 | -0/+1 |
| | | | | | | | | (issue #6715). | ||||
* | | Merge 3.2 | Éric Araujo | 2011-11-29 | 1 | -0/+1 |
|\ \ | |/ | |||||
| * | Fix inspect.getmodule to use a copy of sys.modules for iteration (#13487). | Éric Araujo | 2011-11-29 | 1 | -0/+1 |
| | | | | | | | | | | | | This fixes a regression compared to 2.x, where sys.modules.items() returns a copy, as indicated by a comment in the source. Diagnosis and patch by Erik Tollerud. | ||||
* | | Issue #12618: py_compile cannot create files in current directory | Meador Inge | 2011-11-28 | 1 | -0/+1 |
|\ \ | |/ | | | | | Initial patch by Sjoerd de Vries. | ||||
| * | Issue #12618: py_compile cannot create files in current directory | Meador Inge | 2011-11-28 | 1 | -0/+1 |
| | | | | | | | | Initial patch by Sjoerd de Vries. | ||||
* | | sort last committed name in alphabetical order | Giampaolo Rodola' | 2011-11-22 | 1 | -1/+1 |
| | | |||||
* | | fix wrong credit and issue id given in previous commit | Giampaolo Rodola' | 2011-11-22 | 1 | -1/+1 |
| | | |||||
* | | Fix 13245: | Giampaolo Rodola' | 2011-11-22 | 1 | -0/+1 |
| | | | | | | | | | | | | | | sched.scheduler class constructor's timefunc and delayfunct parameters are now optional. scheduler.enter and scheduler.enterabs methods gained a new kwargs parameter. Patch contributed by Matt Mulsow. | ||||
* | | Issue #13322: Fix BufferedWriter.write() to ensure that BlockingIOError is | Antoine Pitrou | 2011-11-21 | 1 | -0/+1 |
|\ \ | |/ | | | | | | | | | | | raised when the wrapped raw file is non-blocking and the write would block. Previous code assumed that the raw write() would raise BlockingIOError, but RawIOBase.write() is defined to returned None when the call would block. Patch by sbt. | ||||
| * | Issue #13322: Fix BufferedWriter.write() to ensure that BlockingIOError is | Antoine Pitrou | 2011-11-21 | 1 | -0/+1 |
| | | | | | | | | | | | | | | raised when the wrapped raw file is non-blocking and the write would block. Previous code assumed that the raw write() would raise BlockingIOError, but RawIOBase.write() is defined to returned None when the call would block. Patch by sbt. | ||||
* | | Merge branch 3.2 (closes #13338) | Petri Lehtinen | 2011-11-19 | 1 | -0/+1 |
|\ \ | |/ | |||||
| * | Issue #13338: Handle all enumerations in _Py_ANNOTATE_MEMORY_ORDER | Petri Lehtinen | 2011-11-19 | 1 | -0/+1 |
| | | | | | | | | | | This allows compiling extension modules with -Wswitch-enum on gcc. Initial patch by Floris Bruynooghe. | ||||
* | | Add entries for distutils2 contributors (their patches are in packaging) | Éric Araujo | 2011-11-14 | 1 | -0/+5 |
| | | |||||
* | | Merge 3.2. Remove duplicate ACKS and reorder slightly to prevent future dups. | Florent Xicluna | 2011-11-11 | 1 | -41/+38 |
|\ \ | |/ | |||||
| * | Remove duplicate ACKS. | Florent Xicluna | 2011-11-11 | 1 | -2/+0 |
| | | |||||
* | | Issue #13191: typo in argparse docs | Eli Bendersky | 2011-11-11 | 1 | -0/+1 |
|\ \ | |/ | |||||
| * | Issue #13191: typo in argparse docs | Eli Bendersky | 2011-11-11 | 1 | -0/+1 |
| | | |||||
* | | Issue #13365: correct an error in the documentation of str.expandtabs. Patch ↵ | Eli Bendersky | 2011-11-11 | 1 | -0/+1 |
|\ \ | |/ | | | | | by John Feuerstein | ||||
| * | Issue #13365: correct an error in the documentation of str.expandtabs | Eli Bendersky | 2011-11-11 | 1 | -0/+1 |
| | | |||||
* | | Issue #13373: multiprocessing.Queue.get() could sometimes block indefinitely | Antoine Pitrou | 2011-11-09 | 1 | -0/+1 |
|\ \ | |/ | | | | | when called with a timeout. Patch by Arnaud Ysmal. | ||||
| * | Issue #13373: multiprocessing.Queue.get() could sometimes block indefinitely | Antoine Pitrou | 2011-11-09 | 1 | -0/+1 |
| | | | | | | | | when called with a timeout. Patch by Arnaud Ysmal. | ||||
* | | Issue #3067: Fix the error raised by locale.setlocale() | Petri Lehtinen | 2011-11-04 | 1 | -0/+1 |
|\ \ | |/ | |||||
| * | Issue #3067: Fix the error raised by locale.setlocale() | Petri Lehtinen | 2011-11-04 | 1 | -0/+1 |
| | | |||||
| * | Issue #13304: Skip test case if user site-packages disabled (-s or | Ned Deily | 2011-10-31 | 1 | -0/+1 |
| | | | | | | | | PYTHONNOUSERSITE). (Patch by Carl Meyer) | ||||
* | | Issue #13324: fcntlmodule: Add the F_NOCACHE flag. Patch by Alex Stewart. | Charles-François Natali | 2011-11-02 | 1 | -0/+1 |
| | | |||||
* | | Issue #5661: Add a test for ECONNRESET/EPIPE handling to test_asyncore. Patch | Charles-François Natali | 2011-10-29 | 1 | -0/+1 |
| | | | | | | | | by Xavier de Gaye. | ||||
* | | Issue #13201: equality for range objects is now based on equality of the ↵ | Mark Dickinson | 2011-10-23 | 1 | -0/+1 |
| | | | | | | | | underlying sequences. Thanks Sven Marnach for the patch. | ||||
* | | Issue 13243: Rename _Py_identifier to _Py_IDENTIFIER in asdl_c.py | Meador Inge | 2011-10-22 | 1 | -0/+1 |
| | | | | | | | | | | Parser/asdl_c.py was missed in commit 7109f31300fb when _Py_identifier was replaced with _Py_IDENTIFIER. Thanks to Eric Snow for the patch. | ||||
* | | Fix missing imports in setup scripts generated by packaging (#13205). | Éric Araujo | 2011-10-21 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | I’ve made more edits than the bug report suggested to make sure the generated setup script is compatible with many Python versions; a comment in the source explains that in detail. The cfg_to_args function uses old 2.x idioms like codecs.open and RawConfigParser.readfp because I want the setup.py generated by packaging and distutils2 to be the same. Most users won’t see the deprecation warning and I ignore it in the test suite. Thanks to David Barnett for the report and original patch. | ||||
* | | Merge #11751 from 3.2 | Éric Araujo | 2011-10-11 | 1 | -0/+1 |
|\ \ | |/ | |||||
| * | Increase test coverage for distutils.filelist (#11751). | Éric Araujo | 2011-10-11 | 1 | -0/+1 |
| | | | | | | | | Patch by Justin Love. | ||||
* | | Merge fixes for #10526, #10359, #11254, #9100 and the bug without number | Éric Araujo | 2011-10-08 | 1 | -0/+1 |
|\ \ | |/ | |||||
| * | Fix distutils byte-compilation to comply with PEP 3147 (#11254). | Éric Araujo | 2011-10-07 | 1 | -0/+1 |
| | | | | | | | | Patch by Jeff Ramnani. Tested with -B, -O and -OO. | ||||
* | | Issue #10141: socket: add SocketCAN (PF_CAN) support. Initial patch by Matthias | Charles-François Natali | 2011-10-06 | 1 | -0/+2 |
| | | | | | | | | Fuchs, updated by Tiago Gonçalves. | ||||
* | | Issue #13099: Fix sqlite3.Cursor.lastrowid under a Turkish locale. | Antoine Pitrou | 2011-10-04 | 1 | -0/+1 |
|\ \ | |/ | | | | | Reported and diagnosed by Thomas Kluyver. |