Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #1813: merge changeset that reverts a glibc workaround for the | Stefan Krah | 2012-02-02 | 1 | -3/+0 |
|\ | | | | | | | Fedora buildbot. | ||||
| * | Issue #1813: Revert workaround for a glibc bug on the Fedora buildbot. | Stefan Krah | 2012-02-02 | 1 | -3/+0 |
| | | |||||
| * | merge. again. | Brian Curtin | 2012-02-01 | 2 | -3/+3 |
| |\ | |||||
* | \ | merge updates | Brian Curtin | 2012-02-01 | 6 | -9/+59 |
|\ \ \ | |||||
| * \ \ | Merge branch 3.2 | Petri Lehtinen | 2012-02-01 | 5 | -9/+54 |
| |\ \ \ | | |/ / | | | | | | | | | Closes #13676. | ||||
| | * | | sqlite3: Handle strings with embedded zeros correctly | Petri Lehtinen | 2012-02-01 | 5 | -9/+54 |
| | | | | | | | | | | | | | | | | Closes #13676. | ||||
| * | | | merge | Raymond Hettinger | 2012-02-01 | 1 | -0/+5 |
| |\ \ \ | | |/ / | |||||
| | * | | Add usage note | Raymond Hettinger | 2012-02-01 | 1 | -0/+5 |
| | | | | |||||
* | | | | merge from 3.2 | Brian Curtin | 2012-02-01 | 2 | -3/+3 |
|\ \ \ \ | |/ / / |/| | / | | |/ | |/| | |||||
| * | | Add a hint that CSD == Service Pack. | Brian Curtin | 2012-02-01 | 2 | -3/+3 |
| |/ | | | | | | | | | | | | | | | | | | | | | People searcing for the way to get a "service pack" will never find that we provide it here, and people that find this function won't know what CSD is until they run the function. On top of this, they won't know what the value means unless they really have a service pack installed. CSD, or Customer Service Diagnostics, is apparently no longer used, and was rarely used term at that. Most references to it online are from universities making Windows 2000 and XP service packs available to students. | ||||
* | | Issue #13706: Add assertions to detect bugs earlier | Victor Stinner | 2012-01-31 | 2 | -3/+12 |
| | | |||||
* | | Fix a minor output typo as found by Terry Reedy. | Brett Cannon | 2012-01-31 | 1 | -1/+1 |
| | | |||||
* | | Merge | Brett Cannon | 2012-01-31 | 5 | -13/+24 |
|\ \ | |||||
| * \ | Merge with 3.2 whitespace | Terry Jan Reedy | 2012-01-31 | 1 | -1/+1 |
| |\ \ | | |/ | |||||
| | * | whitespace | Terry Jan Reedy | 2012-01-31 | 1 | -1/+1 |
| | | | |||||
| * | | Merge 3.2 | Terry Jan Reedy | 2012-01-31 | 4 | -9/+19 |
| |\ \ | | |/ | | | | | | | | | | | | | | | | | | | - Issue #13506: Add '' to path for IDLE Shell when started and restarted with Restart Shell. Original patches by Marco Scataglini and Roger Serwy. Merge 3.2 #13506 Add '' to path for interactive interpreter by adding with_cwd parameter to PyShell.PyShell.transfer_path() and changing elsewhere as needed. Original patches by Marco Scataglini and Roger Serwy. | ||||
| | * | #13506 Add '' to path for interactive interpreter by adding with_cwd parameter | Terry Jan Reedy | 2012-01-31 | 4 | -10/+20 |
| | | | | | | | | | | | | | | | to PyShell.PyShell.transfer_path() and changing elsewhere as needed. Original patches by Marco Scataglini and Roger Serwy. | ||||
| * | | Fix zipimport.c's read_directory() to use appropriate types for the values | Gregory P. Smith | 2012-01-30 | 1 | -4/+5 |
| |\ \ | | |/ | | | | | | | | | | | | | being read from the header vs the values being used by fseek and ftell (Py_ssize_t for those). Updates the Py_BuildValue format string to match (including several existing wrong 'i's that should have been 'l's). | ||||
| | * | Fix zip_import.c's read_directory() to use appropriate types for the values | Gregory P. Smith | 2012-01-30 | 1 | -4/+5 |
| | | | | | | | | | | | | | | | | | | | | | | | | being read from the header vs the values being used by fseek and ftell (Py_ssize_t for those) and how they are computed. Py_ssize_t is used for actual file offsets so that files greater than 2gigs could be supported. Updates the Py_BuildValue format string to match (including several existing wrong 'i's that should have been 'l's). | ||||
* | | | Let importlib.test.benchmark take a specific benchmark name to run. | Brett Cannon | 2012-01-31 | 1 | -3/+18 |
| | | | |||||
* | | | Allow for the specification of a file to dump importlib benchmark | Brett Cannon | 2012-01-31 | 1 | -10/+36 |
|/ / | | | | | | | | | | | results to (and to compare against previous runs). * * * Move importlib.test.benchmark to argparse. | ||||
* | | Issue #8828: Add new function os.replace(), for cross-platform renaming with ↵ | Antoine Pitrou | 2012-01-30 | 4 | -15/+65 |
| | | | | | | | | overwriting. | ||||
* | | Issue #13890: Also fix for extension module tests for case-insensitivity. | Brett Cannon | 2012-01-30 | 1 | -0/+6 |
| | | |||||
* | | Issue #13890: Fix importlib case-sensitivity tests to not run on Windows. | Brett Cannon | 2012-01-30 | 1 | -0/+6 |
| | | | | | | | | | | | | | | Thanks to os.environ under Windows only updating the dict and not the environment itself (as exposed by nt.environ), tests using PYTHONCASEOK always fail. Now the tests are skipped when os.environ does not do what is expected. | ||||
* | | merge 3.2 (closes #13908) | Benjamin Peterson | 2012-01-30 | 2 | -1/+7 |
|\ \ | |/ | |||||
| * | ready types returned from PyType_FromSpec | Benjamin Peterson | 2012-01-30 | 2 | -0/+5 |
| | | |||||
| * | adjust declaration | Benjamin Peterson | 2012-01-30 | 1 | -1/+2 |
| | | |||||
* | | Issue #13847: Fix test_time, time.gmtime() doesn't use localtime() | Victor Stinner | 2012-01-29 | 1 | -1/+0 |
| | | | | | | | | On Windows, localtime(-1) fails, but not gmtime(1). | ||||
* | | Issue #13874: read_null() of faulthandler uses volatile to avoid optimisation | Victor Stinner | 2012-01-29 | 1 | -1/+4 |
| | | | | | | | | Clang 3.0 removes "y = *x;" instruction if the optimisation level is 3. | ||||
* | | Issue #13848: open() and the FileIO constructor now check for NUL characters ↵ | Antoine Pitrou | 2012-01-29 | 6 | -21/+41 |
|\ \ | |/ | | | | | | | | | in the file name. Patch by Hynek Schlawack. | ||||
| * | Issue #13848: open() and the FileIO constructor now check for NUL characters ↵ | Antoine Pitrou | 2012-01-29 | 7 | -22/+44 |
| | | | | | | | | | | | | in the file name. Patch by Hynek Schlawack. | ||||
* | | Issue #6774: Back out c8b77efe8b56, which only brings confusion. | Charles-François Natali | 2012-01-29 | 1 | -3/+1 |
| | | |||||
* | | merge with 3.2 | Georg Brandl | 2012-01-29 | 1 | -4/+4 |
|\ \ | |/ | |||||
| * | Fix #13900: resolve self-referential description of a parameter. | Georg Brandl | 2012-01-29 | 1 | -4/+4 |
| | | |||||
* | | merge 3.2 | Benjamin Peterson | 2012-01-29 | 1 | -285/+0 |
|\ \ | |/ | |||||
| * | remove tests from really old regex module | Benjamin Peterson | 2012-01-29 | 1 | -285/+0 |
| | | |||||
* | | Issue #13806: The size check in audioop decompression functions was too ↵ | Antoine Pitrou | 2012-01-28 | 3 | -9/+25 |
|\ \ | |/ | | | | | | | | | strict and could reject valid compressed data. Patch by Oleg Plakhotnyuk. | ||||
| * | Issue #13806: The size check in audioop decompression functions was too ↵ | Antoine Pitrou | 2012-01-28 | 3 | -9/+25 |
| | | | | | | | | | | | | strict and could reject valid compressed data. Patch by Oleg Plakhotnyuk. | ||||
* | | Issue #13895: fix test_ssl hanging under Ubuntu | Antoine Pitrou | 2012-01-28 | 1 | -25/+25 |
|\ \ | |/ | |||||
| * | Issue #13895: fix test_ssl hanging under Ubuntu | Antoine Pitrou | 2012-01-28 | 1 | -20/+20 |
| | | |||||
* | | Fix typo in comment. | Nadeem Vawda | 2012-01-28 | 1 | -1/+1 |
| | | |||||
* | | Issue #13894: Skip test_threading.CRLockTests if _CRLock isn't available. Patch | Charles-François Natali | 2012-01-28 | 2 | -0/+2 |
|\ \ | |/ | | | | | by Matt Joiner. | ||||
| * | Issue #13894: Skip test_threading.CRLockTests if _CRLock isn't available. Patch | Charles-François Natali | 2012-01-28 | 2 | -0/+2 |
| | | | | | | | | by Matt Joiner. | ||||
* | | Merge 3.2 -> default (issue 13889) | Mark Dickinson | 2012-01-27 | 1 | -0/+5 |
|\ \ | |/ | |||||
| * | Issue #13889: Add missing _Py_SET_53BIT_PRECISION_* calls around uses of ↵ | Mark Dickinson | 2012-01-27 | 1 | -0/+5 |
| | | | | | | | | dtoa.c functions in float round. | ||||
* | | Fix intermittent test_ssl failure. | Antoine Pitrou | 2012-01-27 | 1 | -0/+1 |
|\ \ | |/ | |||||
| * | Fix intermittent test_ssl failure. | Antoine Pitrou | 2012-01-27 | 1 | -0/+1 |
| | | |||||
* | | merge heads (#13887) | Benjamin Peterson | 2012-01-27 | 1 | -0/+5 |
|\ \ | |/ | |||||
| * | note that get() is not affected by default_factory (closes #13887) | Benjamin Peterson | 2012-01-27 | 1 | -0/+5 |
| | | |||||
* | | Fix error handling in examples of C API use. | Antoine Pitrou | 2012-01-27 | 1 | -11/+25 |
|\ \ | |/ |