Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #18608: Avoid keeping a strong reference to the locale module inside ↵ | Antoine Pitrou | 2013-08-01 | 4 | -27/+51 |
| | | | | the _io module. | ||||
* | Issue #18619: Fix atexit leaking callbacks registered from sub-interpreters, ↵ | Antoine Pitrou | 2013-08-01 | 3 | -44/+122 |
| | | | | and make it GC-aware. | ||||
* | test_capi: make a specific test case for the subinterpreter test | Antoine Pitrou | 2013-08-01 | 1 | -1/+6 |
| | | | | (it was wrongly classified in the pending calls test case) | ||||
* | Remove Lib/site.py hack to unregister patched builtins. | Antoine Pitrou | 2013-08-01 | 1 | -29/+10 |
| | | | | It creates a refleak in subinterpreters, as atexit callbacks aren't triggered at their end. | ||||
* | Add a test for module weakrefability | Antoine Pitrou | 2013-08-01 | 1 | -0/+9 |
| | |||||
* | Issue #18569: The installer now adds .py to the PATHEXT variable | Martin v. Löwis | 2013-08-01 | 2 | -0/+10 |
| | | | | when extensions are registered. Patch by Paul Moore. | ||||
* | Add UUID for 3.4. | Martin v. Löwis | 2013-08-01 | 1 | -0/+1 |
| | |||||
* | - Issue #18257: Fix readlink usage in python-config. Install the python | doko@ubuntu.com | 2013-08-01 | 4 | -2/+19 |
| | | | | version again on Darwin. | ||||
* | issue9035: Prevent Windows-specific tests from running on non-Windows platforms | Tim Golden | 2013-08-01 | 1 | -16/+16 |
| | |||||
* | Issue #9035: os.path.ismount now recognises volumes mounted below | Tim Golden | 2013-08-01 | 4 | -5/+103 |
| | | | | a drive root on Windows. Original patch by Atsuo Ishimoto. | ||||
* | #17616: Improve context manager tests, fix bugs in close method and mode docs. | R David Murray | 2013-08-01 | 3 | -26/+54 |
| | | | | | | | | | | | | | | 'mode' docs fix: the file must always be opened in binary in Python3. Bug in Wave_write.close: when the close method calls the check that the header exists and it raises an error, the _file attribute never gets set to None, so the next close tries to close the file again and we get an ignored traceback in the __del__ method. The fix is to set _file to None in a finally clause. This represents a behavior change...in theory a program could be checking for the error on close and then doing a recovery action on the still open file and closing it again. But this change will only go into 3.4, so I think that behavior change is acceptable given that it would be pretty weird and unlikely logic to begin with. | ||||
* | Initialize utime with 0. It fixes a couple of compiler warnung: | Christian Heimes | 2013-07-31 | 1 | -0/+1 |
|\ | | | | | | | warning: 'utime.mtime_ns' may be used uninitialized in this function [-Wmaybe-uninitialized] | ||||
| * | Initialize utime with 0. It fixes a couple of compiler warnung: | Christian Heimes | 2013-07-31 | 1 | -0/+1 |
| | | | | | | | | warning: 'utime.mtime_ns' may be used uninitialized in this function [-Wmaybe-uninitialized] | ||||
* | | merge | Christian Heimes | 2013-07-31 | 0 | -0/+0 |
|\ \ | |/ | |||||
| * | merge | Christian Heimes | 2013-07-31 | 7 | -16/+20 |
| |\ | |||||
* | \ | Silence warning about set but unused variable inside compile_atom() in ↵ | Christian Heimes | 2013-07-31 | 1 | -0/+1 |
|\ \ \ | |/ / | | | | | | | non-debug builds | ||||
| * | | Silence warning about set but unused variable inside compile_atom() in ↵ | Christian Heimes | 2013-07-31 | 1 | -0/+1 |
| | | | | | | | | | | | | non-debug builds | ||||
* | | | Fix whitespace | Antoine Pitrou | 2013-07-31 | 1 | -1/+0 |
| | | | |||||
* | | | Issue #18214: Improve finalization of Python modules to avoid setting their ↵ | Antoine Pitrou | 2013-07-31 | 9 | -111/+180 |
| | | | | | | | | | | | | globals to None, in most cases. | ||||
* | | | Merge | Antoine Pitrou | 2013-07-31 | 17 | -32/+137 |
|\ \ \ | |||||
| * | | | #17616: wave.open now supports the 'with' statement. | R David Murray | 2013-07-31 | 6 | -12/+45 |
| | | | | | | | | | | | | | | | | Feature and tests by ClClaudiu.Popa, I added the doc changes. | ||||
| * | | | yet another WITH_THREADS typo | Christian Heimes | 2013-07-31 | 1 | -1/+1 |
| | | | | |||||
| * | | | merge | Christian Heimes | 2013-07-31 | 1 | -3/+3 |
| |\ \ \ | |||||
| | * \ \ | Merge with 3.3 | Terry Jan Reedy | 2013-07-31 | 1 | -3/+3 |
| | |\ \ \ | | | | |/ | | | |/| | |||||
| | | * | | Issue #18573: More copy-paste fixes to assertWarns entry. | Terry Jan Reedy | 2013-07-31 | 1 | -3/+3 |
| | | | | | |||||
| * | | | | Fix _sha3 module to actually release the GIL around its update function. | Christian Heimes | 2013-07-31 | 1 | -1/+1 |
| |/ / / | | | | | | | | | | | | | gcov is great. | ||||
| * | | | Test Py_IncRef() and Py_DecRef() C functions | Christian Heimes | 2013-07-31 | 1 | -0/+11 |
| | | | | |||||
| * | | | Fix use of uninitialized scalar variable, see 3f994367a979 | Christian Heimes | 2013-07-30 | 1 | -1/+3 |
| | | | | | | | | | | | | | | | | CID 1058763 | ||||
| * | | | Issue #18481: Add C coverage reporting with gcov and lcov. A new make target | Christian Heimes | 2013-07-30 | 3 | -1/+55 |
| | | | | | | | | | | | | | | | | | | | | "coverage-report" creates an instrumented Python build, runs unit tests and creates a HTML. The report can be updated with "make coverage-lcov". | ||||
| * | | | Issue #15494: merge from 3.3 | Ned Deily | 2013-07-30 | 1 | -1/+1 |
| |\ \ \ | | |/ / | |||||
| | * | | Issue #15494: Install new test/support directory. | Ned Deily | 2013-07-30 | 1 | -1/+1 |
| | | | | |||||
| * | | | Merge: #16273: Fix tutorial discussion of seek/tell (opaque text-mode values). | R David Murray | 2013-07-30 | 1 | -4/+9 |
| |\ \ \ | | |/ / | |||||
| | * | | #16273: Fix tutorial discussion of seek/tell (opaque text-mode values). | R David Murray | 2013-07-30 | 1 | -4/+9 |
| | | | | | | | | | | | | | | | | Patch by Sijin Joseph. | ||||
| * | | | Merge: #18601: fix error made when difflib example was converted to use 'with'. | R David Murray | 2013-07-30 | 1 | -1/+1 |
| |\ \ \ | | |/ / | |||||
| | * | | #18601: fix error made when difflib example was converted to use 'with'. | R David Murray | 2013-07-30 | 1 | -1/+1 |
| | | | | |||||
| * | | | fixed examples to work with changed attribute names | Ethan Furman | 2013-07-30 | 1 | -5/+5 |
| | | | | |||||
| * | | | Merge #18584: s/testcleanup/testsetup/ until we switch to Sphinx 1.1. | R David Murray | 2013-07-30 | 2 | -2/+2 |
| |\ \ \ | | |/ / | |||||
| | * | | #18584: s/testcleanup/testsetup/ until we switch to Sphinx 1.1. | R David Murray | 2013-07-30 | 2 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | testcleanup directive is new as of 1.1, and we are currently running 1.0.7. But using testsetup works just as well, and avoids the unknown directive error when building the docs. | ||||
* | | | | Issue #15699: The readline module now uses PEP 3121-style module ↵ | Antoine Pitrou | 2013-07-31 | 2 | -42/+114 |
| | | | | | | | | | | | | | | | | | | | | | | | | initialization, so as to reclaim allocated resources (Python callbacks) at shutdown. Original patch by Robin Schreiber. | ||||
* | | | | Fix style | Antoine Pitrou | 2013-07-30 | 1 | -2/+2 |
|/ / / | |||||
* | | | Merge doc fix | Antoine Pitrou | 2013-07-30 | 1 | -5/+4 |
|\ \ \ | |/ / | |||||
| * | | Simplify example of PyErr_Fetch() use | Antoine Pitrou | 2013-07-30 | 1 | -5/+4 |
| |/ | |||||
* | | Issue #18112: PEP 442 implementation (safe object finalization). | Antoine Pitrou | 2013-07-30 | 25 | -323/+1256 |
| | | |||||
* | | Add simple test for repr(lock) | Christian Heimes | 2013-07-30 | 1 | -0/+5 |
| | | |||||
* | | Add simple test for resource.getpagesize() | Christian Heimes | 2013-07-30 | 1 | -0/+5 |
|\ \ | |/ | |||||
| * | Add simple test for resource.getpagesize() | Christian Heimes | 2013-07-30 | 1 | -0/+5 |
| | | |||||
* | | Issue #18599: Fix name attribute of _sha1.sha1() object. It now returns | Christian Heimes | 2013-07-30 | 3 | -17/+65 |
|\ \ | |/ | | | | | | | 'SHA1' instead of 'SHA'. Add more tests for hashlib and hash object attributes | ||||
| * | Add more tests for hashlib and hash object attributes | Christian Heimes | 2013-07-30 | 1 | -13/+62 |
| | | |||||
| * | Issue #18599: Fix name attribute of _sha1.sha1() object. It now returns | Christian Heimes | 2013-07-30 | 2 | -1/+4 |
| | | | | | | | | 'SHA1' instead of 'SHA'. | ||||
* | | Issue #18593: fix typo in comment | Eli Bendersky | 2013-07-30 | 1 | -1/+1 |
|\ \ | |/ |