Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | | Issue #15876: Fix a refleak in the curses module | Ross Lagerwall | 2012-09-07 | 2 | -0/+3 | |
| | | | | | | | | | | | | The refleak occurred when assigning to window.encoding. | |||||
* | | | Fix for fcc629208842 | Christian Heimes | 2012-09-07 | 1 | -9/+7 | |
|\ \ \ | |/ / | | | | | | | BSD's make doesn't support some of the features. | |||||
| * | | Fix for fcc629208842 | Christian Heimes | 2012-09-07 | 1 | -9/+7 | |
| | | | | | | | | | | | | BSD's make doesn't support some of the features. | |||||
* | | | Issue #15591 and Issue #11715: silence output of setup.py when make is run ↵ | Christian Heimes | 2012-09-06 | 1 | -7/+9 | |
|\ \ \ | | | | | | | | | | | | | with -s option. | |||||
| * \ \ | Issue #15591 and Issue #11715: silence output of setup.py when make is run ↵ | Christian Heimes | 2012-09-06 | 1 | -7/+9 | |
| |\ \ \ | | |/ / | | | | | | | | | with -s option. | |||||
| | * | | Issue #15591 and Issue #11715: silence output of setup.py when make is run ↵ | Christian Heimes | 2012-09-06 | 1 | -7/+9 | |
| | | | | | | | | | | | | | | | | with -s option. | |||||
* | | | | Fix a typo in the curses docs | Ross Lagerwall | 2012-09-06 | 1 | -1/+1 | |
|/ / / | ||||||
* | | | Issue #15591: run ctypes' configure in quiet mode when setup.py runs silently | Christian Heimes | 2012-09-06 | 1 | -0/+2 | |
|\ \ \ | |/ / | ||||||
| * | | Issue #15591: run ctypes' configure in quiet mode when setup.py runs silently | Christian Heimes | 2012-09-06 | 1 | -0/+2 | |
| | | | ||||||
* | | | After the jump in line 1051 unicode_tmp is NULL. Found by Coverity. | Stefan Krah | 2012-09-06 | 1 | -1/+1 | |
| | | | ||||||
* | | | _testbuffer.c: In all current use cases of cmp_structure() dest->format and | Stefan Krah | 2012-09-06 | 1 | -3/+2 | |
| | | | | | | | | | | | | | | | src->format are either both NULL or both non-NULL. However, it is safer to generalize the function. Found by Coverity. | |||||
* | | | add whatsnew entry for PEP 421 | Eric Snow | 2012-09-06 | 1 | -0/+35 | |
| | | | ||||||
* | | | Issue #13992: The trashcan mechanism is now thread-safe. This eliminates | Antoine Pitrou | 2012-09-05 | 7 | -9/+140 | |
|\ \ \ | |/ / | | | | | | | | | | | | | | | | | | | | | | sporadic crashes in multi-thread programs when several long deallocator chains ran concurrently and involved subclasses of built-in container types. Note that the trashcan functions are part of the stable ABI, therefore they have to be kept around for binary compatibility of extensions. | |||||
| * | | Issue #13992: The trashcan mechanism is now thread-safe. This eliminates | Antoine Pitrou | 2012-09-05 | 7 | -9/+140 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | sporadic crashes in multi-thread programs when several long deallocator chains ran concurrently and involved subclasses of built-in container types. Because of this change, a couple extension modules compiled for 3.2.4 (those which use the trashcan mechanism, despite it being undocumented) will not be loadable by 3.2.3 and earlier. However, extension modules compiled for 3.2.3 and earlier will be loadable by 3.2.4. | |||||
* | | | Issue #15841: The readable(), writable() and seekable() methods of BytesIO | Antoine Pitrou | 2012-09-05 | 6 | -12/+47 | |
|\ \ \ | |/ / | | | | | | | | | | and StringIO objects now raise ValueError when the object has been closed. Patch by Alessandro Moura. | |||||
| * | | Issue #15841: The readable(), writable() and seekable() methods of BytesIO | Antoine Pitrou | 2012-09-05 | 6 | -12/+47 | |
| | | | | | | | | | | | | | | | and StringIO objects now raise ValueError when the object has been closed. Patch by Alessandro Moura. | |||||
* | | | Issue #15855: updated related manual entries. | Alexander Belopolsky | 2012-09-03 | 1 | -1/+7 | |
| | | | ||||||
* | | | Issue #15855: added docstrings for memoryview methods and data descriptors ↵ | Alexander Belopolsky | 2012-09-03 | 1 | -13/+28 | |
| | | | | | | | | | | | | new in 3.3. | |||||
* | | | Issue #15855: added docstrings for memoryview methods and data descriptors ↵ | Alexander Belopolsky | 2012-09-03 | 1 | -10/+41 | |
|\ \ \ | |/ / | | | | | | | (merge 3.2). | |||||
| * | | Issue #15855: added docstrings for memoryview methods and data descriptors. | Alexander Belopolsky | 2012-09-03 | 1 | -11/+43 | |
| | | | ||||||
* | | | #15557,#15447,#15509: webbrowser test suite added. | R David Murray | 2012-09-03 | 2 | -0/+195 | |
| | | | | | | | | | | | | | | | Initial patch by Anton Barkovsky, refined a bit by me to further subdivide the test methods. Provides tests for the previous two bug fix commits. | |||||
* | | | #15447: Use subprocess.DEVNULL in webbrowser, instead of opening | R David Murray | 2012-09-03 | 2 | -2/+5 | |
| | | | | | | | | | | | | | | | | | | | | | | | | This eliminates a ResourceWarning, since before webbrowser was explicitly opening os.devnull and then leaving it open. Tests to follow. Patch by Anton Barkovsky. | |||||
* | | | Merge #15509: If %action substitution produces a null string, drop it. | R David Murray | 2012-09-03 | 2 | -2/+12 | |
|\ \ \ | |/ / | | | | | | | | | | | | | | | | Patch by Anton Barkovsky, comment addition by me. This shows up as a bug in 3.3 because the definition for Chrome produces such an empty string. Tests will follow. | |||||
| * | | #15509: If %action substitution produces a null string, drop it. | R David Murray | 2012-09-03 | 2 | -2/+12 | |
| | | | | | | | | | | | | | | | | | | | | | | | | Patch by Anton Barkovsky, comment addition by me. This showed up as a bug in 3.3 because the definition for Chrome produced such an empty string. This fix is tested in 3.3+; backporting the new test suite is more trouble than it is worth. | |||||
* | | | Issue #15814: Add NEWS entry regarding intended memoryview hashing restrictions | Nick Coghlan | 2012-09-03 | 1 | -0/+8 | |
| | | | ||||||
* | | | merge 3.2 | Benjamin Peterson | 2012-09-02 | 1 | -2/+2 | |
|\ \ \ | |/ / | ||||||
| * | | put * in the normal place | Benjamin Peterson | 2012-09-02 | 1 | -2/+2 | |
| | | | ||||||
* | | | get rid of ast_error_finish by passing the compiling struct to ast_error | Benjamin Peterson | 2012-09-02 | 2 | -119/+75 | |
| | | | ||||||
* | | | merge 3.2 | Benjamin Peterson | 2012-09-02 | 1 | -2/+2 | |
|\ \ \ | |/ / | ||||||
| * | | move variable decl to the top of the function | Benjamin Peterson | 2012-09-02 | 1 | -2/+2 | |
| | | | ||||||
* | | | merge heads | Benjamin Peterson | 2012-09-02 | 1 | -1/+1 | |
|\ \ \ | ||||||
| * | | | Fix C++-style comment (xlc compilation failure) | Antoine Pitrou | 2012-09-02 | 1 | -1/+1 | |
| | | | | ||||||
* | | | | merge 3.2 (#15846) | Benjamin Peterson | 2012-09-02 | 3 | -0/+17 | |
|\ \ \ \ | |/ / / |/| / / | |/ / | ||||||
| * | | prevert ast errors from being normalized before ast_error_finish is called ↵ | Benjamin Peterson | 2012-09-02 | 3 | -0/+17 | |
| | | | | | | | | | | | | (closes #15846) | |||||
* | | | Issue #15814: Documentation: disallow hashing of multi-dimensional memoryviews. | Stefan Krah | 2012-09-02 | 1 | -6/+8 | |
| | | | ||||||
* | | | Make super() internal errors RuntimeError instead of SystemError (closes #15839) | Benjamin Peterson | 2012-09-02 | 3 | -7/+24 | |
| | | | ||||||
* | | | Close #14223: Fix window.addch(curses.ACS_HLINE) | Victor Stinner | 2012-09-01 | 2 | -27/+14 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix window.addch() of the curses module for special characters like curses.ACS_HLINE: the Python function addch(int) and addch(bytes) is now calling the C function waddch()/mvwaddch() (as it was done in Python 3.2), instead of wadd_wch()/mvwadd_wch(). The Python function addch(str) is still calling the C function wadd_wch()/mvwadd_wch() if the Python curses is linked to libncursesw. | |||||
* | | | Issue #15814: Document planned restrictions for memoryview hashes in 3.3.1. | Stefan Krah | 2012-09-01 | 1 | -15/+7 | |
| | | | ||||||
* | | | Add missing unit. | Stefan Krah | 2012-09-01 | 1 | -1/+1 | |
| | | | ||||||
* | | | Compile _decimal without asserts and update benchmark results. | Stefan Krah | 2012-09-01 | 2 | -2/+2 | |
| | | | ||||||
* | | | #15802: Fix test logic in TestMaildir.test_create_tmp | Petri Lehtinen | 2012-09-01 | 2 | -5/+8 | |
|\ \ \ | |/ / | ||||||
| * | | #15802: Fix test logic in TestMaildir.test_create_tmp | Petri Lehtinen | 2012-09-01 | 2 | -5/+8 | |
| | | | ||||||
* | | | Merge #12776,#11839: call argparse type function only once. | R David Murray | 2012-09-01 | 4 | -7/+74 | |
|\ \ \ | |/ / | | | | | | | | | | | | | | | | | | | | | | Before, the type function was called twice in the case where the default was specified and the argument was given as well. This was especially problematic for the FileType type, as a default file would always be opened, even if a file argument was specified on the command line. Patch by Arnaud Fontaine, with additional test by Mike Meyer. | |||||
| * | | #12776,#11839: call argparse type function only once. | R David Murray | 2012-09-01 | 4 | -7/+69 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Before, the type function was called twice in the case where the default was specified and the argument was given as well. This was especially problematic for the FileType type, as a default file would always be opened, even if a file argument was specified on the command line. Patch by Arnaud Fontaine, with additional test by Mike Meyer. | |||||
* | | | Merge whitespace fix from 3.2. | Trent Nelson | 2012-08-31 | 1 | -4/+4 | |
|\ \ \ | |/ / | ||||||
| * | | Remove trailing whitespace in order to silence warnings on HP-UX. | Trent Nelson | 2012-08-31 | 1 | -4/+4 | |
| | | | ||||||
* | | | Issue #15828: Don't try to close a file if imp.find_module() doesn't | Brett Cannon | 2012-08-31 | 1 | -1/+3 | |
| | | | | | | | | | | | | return one. | |||||
* | | | Issue #15828: Restore support for C extension modules in imp.load_module() | Nick Coghlan | 2012-08-31 | 4 | -21/+35 | |
| | | | ||||||
* | | | Issue #15825: fix typo in OrderedDict docs. | Andrew Svetlov | 2012-08-31 | 2 | -1/+2 | |
|\ \ \ | |/ / | | | | | | | Patch by Mike Hoy. | |||||
| * | | Issue #15825: fix typo in OrderedDict docs. | Andrew Svetlov | 2012-08-31 | 2 | -1/+2 | |
| | | | | | | | | | | | | Patch by Mike Hoy. |