Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #19753: Try to fix test_gdb on SystemZ buildbot | Victor Stinner | 2013-11-24 | 1 | -0/+1 |
| | |||||
* | Issue #19740: Use WaitForSingleObject() instead of trusting TimerOrWaitFired. | Richard Oudkerk | 2013-11-24 | 1 | -2/+9 |
| | |||||
* | Issue #19545: Avoid chained exceptions while passing stray % to | Serhiy Storchaka | 2013-11-24 | 4 | -1/+12 |
|\ | | | | | | | time.strptime(). Initial patch by Claudiu Popa. | ||||
| * | Issue #19545: Avoid chained exceptions while passing stray % to | Serhiy Storchaka | 2013-11-24 | 4 | -1/+12 |
| | | | | | | | | time.strptime(). Initial patch by Claudiu Popa. | ||||
* | | merge with 3.3 | Georg Brandl | 2013-11-24 | 1 | -0/+1 |
|\ \ | |/ | |||||
| * | Doc/Makefile: also do "make suspicious" during daily autobuild | Georg Brandl | 2013-11-24 | 1 | -0/+1 |
| | | |||||
* | | Fix suspicious markup in the docs. | Georg Brandl | 2013-11-24 | 7 | -20/+22 |
| | | |||||
* | | Cosmetic fixes | Eli Bendersky | 2013-11-24 | 1 | -13/+8 |
| | | |||||
* | | Null merge | Antoine Pitrou | 2013-11-24 | 0 | -0/+0 |
|\ \ | |/ | |||||
| * | Issue #19743: fix test_gdb on some optimized Python builds | Antoine Pitrou | 2013-11-24 | 1 | -4/+8 |
| | | |||||
* | | Issue #19743: fix test_gdb on some optimized Python builds | Antoine Pitrou | 2013-11-24 | 1 | -4/+8 |
| | | |||||
* | | Selectively re-enable framing tests | Antoine Pitrou | 2013-11-24 | 2 | -11/+21 |
| | | |||||
* | | Clinic: fix "self converters" with METH_NOARGS functions. | Larry Hastings | 2013-11-24 | 2 | -42/+47 |
| | | |||||
* | | Clinic: Add warning for untested (and unused in CPython!) format units. | Larry Hastings | 2013-11-24 | 1 | -0/+1 |
| | | |||||
* | | Fix a few markup problems in the new import doc. | Georg Brandl | 2013-11-24 | 1 | -2/+4 |
| | | |||||
* | | Issue #19741: cleanup tracemalloc_realloc() | Victor Stinner | 2013-11-24 | 1 | -8/+15 |
| | | | | | | | | Explain that unhandled error case is very unlikely | ||||
* | | Remove code path in cpickle that does not exist in pickle. | Alexandre Vassalotti | 2013-11-24 | 1 | -7/+1 |
| | | |||||
* | | Issue #19741: tracemalloc: report tracemalloc_log_alloc() failure to the caller | Victor Stinner | 2013-11-24 | 1 | -18/+29 |
| | | | | | | | | for new allocations, but not when a memory block was already resized | ||||
* | | Make Ellipsis and NotImplemented picklable through the reduce protocol. | Alexandre Vassalotti | 2013-11-24 | 4 | -42/+24 |
| | | |||||
* | | Make built-in methods picklable through the reduce protocol. | Alexandre Vassalotti | 2013-11-24 | 3 | -41/+22 |
| | | |||||
* | | Issue #19741: fix tracemalloc_log_alloc(), handle _Py_HASHTABLE_SET() failure | Victor Stinner | 2013-11-24 | 1 | -7/+16 |
| | | |||||
* | | Issue #3158: Relax new doctests a bit. | Zachary Ware | 2013-11-24 | 1 | -4/+9 |
| | | | | | | | | | | | | | | Apparently, the number of objects with docstrings in builtins varies with --with-pydebug (non-debug has one fewer). Also, skip the new tests entirely if built --without-doc-strings. | ||||
* | | Merge heads | Zachary Ware | 2013-11-24 | 7 | -28/+65 |
|\ \ | |||||
| * | | Issue #3158: doctest can now find doctests in functions and methods | Zachary Ware | 2013-11-24 | 7 | -28/+65 |
| | | | | | | | | | | | | | | | | | | | | | | | | written in C. As a part of this, a few doctests have been added to the builtins module (on hex(), oct(), and bin()), a doctest has been fixed (hopefully on all platforms) on float, and test_builtins now runs doctests in builtins. | ||||
* | | | Issue #19734: Also run pip version check in isolated mode | Nick Coghlan | 2013-11-24 | 1 | -2/+2 |
|/ / | |||||
* | | Issue #19734: Ensure test_venv ignores PIP_REQUIRE_VIRTUALENV | Nick Coghlan | 2013-11-24 | 1 | -0/+4 |
| | | |||||
* | | Disable annoying tests which doesn't work optimized pickles. | Alexandre Vassalotti | 2013-11-24 | 1 | -11/+13 |
| | | |||||
* | | Make framing optional in pickle protocol 4. | Alexandre Vassalotti | 2013-11-24 | 3 | -197/+132 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This will allow us to control in the future whether to use framing or not. For example, we may want to turn it off for tiny pickle where it doesn't help. The change also improves performance slightly: ### fastpickle ### Min: 0.608517 -> 0.557358: 1.09x faster Avg: 0.798892 -> 0.694738: 1.15x faster Significant (t=3.45) Stddev: 0.17145 -> 0.12704: 1.3496x smaller Timeline: http://goo.gl/3xQE1J ### pickle_dict ### Min: 0.669920 -> 0.615271: 1.09x faster Avg: 0.733633 -> 0.645058: 1.14x faster Significant (t=5.05) Stddev: 0.12041 -> 0.02961: 4.0662x smaller Timeline: http://goo.gl/LpLSXI ### pickle_list ### Min: 0.397583 -> 0.368112: 1.08x faster Avg: 0.412784 -> 0.397223: 1.04x faster Significant (t=2.78) Stddev: 0.01518 -> 0.03653: 2.4068x larger Timeline: http://goo.gl/v39E59 ### unpickle_list ### Min: 0.692935 -> 0.594870: 1.16x faster Avg: 0.730012 -> 0.628395: 1.16x faster Significant (t=17.76) Stddev: 0.02720 -> 0.02995: 1.1012x larger Timeline: http://goo.gl/2P9AEt The following not significant results are hidden, use -v to show them: fastunpickle. | ||||
* | | Issue #19734: ctypes resource management fixes | Nick Coghlan | 2013-11-24 | 1 | -6/+9 |
| | | |||||
* | | Issue #19744 (temp workaround): without ssl, skip pip test | Nick Coghlan | 2013-11-24 | 1 | -0/+6 |
| | | |||||
* | | Fix typo in and reformat OS X Installer ReadMe | Ned Deily | 2013-11-24 | 1 | -7/+8 |
| | | |||||
* | | Fix make distclean for out-of-tree builds | Christian Heimes | 2013-11-24 | 1 | -2/+2 |
|\ \ | |/ | |||||
| * | Fix make distclean for out-of-tree builds | Christian Heimes | 2013-11-24 | 1 | -2/+2 |
| | | |||||
* | | Issue #19734: venv still needs isolated mode | Nick Coghlan | 2013-11-24 | 1 | -1/+1 |
| | | |||||
* | | Issue 19734: better diagnostics for test_venv failures | Nick Coghlan | 2013-11-24 | 2 | -6/+18 |
| | | |||||
* | | Fix inspect.signature tests for builtins when docstrings are compiled out. | Larry Hastings | 2013-11-24 | 2 | -1/+9 |
| | | |||||
* | | Try to fix test_tarfile under Windows | Antoine Pitrou | 2013-11-24 | 1 | -1/+1 |
| | | |||||
* | | Build a list of supported test tarfiles dynamically for CLI "test" command | Serhiy Storchaka | 2013-11-24 | 1 | -3/+6 |
| | | | | | | | | tests (issue13477). | ||||
* | | merge | Christian Heimes | 2013-11-24 | 1 | -2/+3 |
|\ \ | |||||
| * | | Don't attempt to run the _opcode test if it wasn't built. | Larry Hastings | 2013-11-24 | 1 | -2/+3 |
| | | | |||||
* | | | Add _opcode to Windows build env | Christian Heimes | 2013-11-24 | 2 | -0/+3 |
|/ / | |||||
* | | Issue #13477: Added command line interface to the tarfile module. | Serhiy Storchaka | 2013-11-23 | 4 | -1/+323 |
| | | | | | | | | Original patch by Berker Peksag. | ||||
* | | Issue #19674: inspect.signature() now produces a correct signature | Larry Hastings | 2013-11-23 | 18 | -136/+343 |
| | | | | | | | | for some builtins. | ||||
* | | Keep asyncio working with Python 3.3 too. | Guido van Rossum | 2013-11-23 | 1 | -2/+9 |
| | | |||||
* | | asyncio: Change bounded semaphore into a subclass, like ↵ | Guido van Rossum | 2013-11-23 | 2 | -18/+20 |
| | | | | | | | | threading.[Bounded]Semaphore. | ||||
* | | Issue #19358: "make clinic" now runs the Argument Clinic preprocessor | Larry Hastings | 2013-11-23 | 3 | -3/+36 |
| | | | | | | | | over all CPython source files. | ||||
* | | Issue #19730: Argument Clinic now supports all the existing PyArg | Larry Hastings | 2013-11-23 | 9 | -155/+466 |
| | | | | | | | | | | "format units" as legacy converters, as well as two new features: "self converters" and the "version" directive. | ||||
* | | Issue #19722: Added opcode.stack_effect(), which accurately | Larry Hastings | 2013-11-23 | 8 | -8/+177 |
| | | | | | | | | computes the stack effect of bytecode instructions. | ||||
* | | Update Tcl/Tk to 8.6.1. | Martin v. Löwis | 2013-11-23 | 7 | -28/+28 |
| | | |||||
* | | Issue #19735: Implement private function ssl._create_stdlib_context() to | Christian Heimes | 2013-11-23 | 11 | -55/+100 |
| | | | | | | | | | | create SSLContext objects in Python's stdlib module. It provides a single configuration point and makes use of SSLContext.load_default_certs(). |