summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
* Issue #18582: Add 'pbkdf2_hmac' to the hashlib module.Christian Heimes2013-10-122-0/+90
|
* Issue #19219: Speed up marshal.loads(), and make pyc files slightly (5% to ↵Antoine Pitrou2013-10-121-4/+4
| | | | 10%) smaller.
* Issue #19131: The aifc module now correctly reads and writes sampwidth ofSerhiy Storchaka2013-10-121-4/+5
|\ | | | | | | compressed streams.
| * Issue #19131: The aifc module now correctly reads and writes sampwidth ofSerhiy Storchaka2013-10-121-4/+5
| | | | | | | | compressed streams.
* | Issue #19205: _osx_support uses the re module all over the place. Omit the ↵Christian Heimes2013-10-121-1/+3
| | | | | | | | test for nw.
* | Fix wrong exception in _bootlocale (apparently this error condition is never ↵Antoine Pitrou2013-10-121-1/+1
| | | | | | | | triggered)
* | Close #18754: Run Python child processes in isolated more in the test suite.Victor Stinner2013-10-125-8/+27
| |
* | Issue #19205: add debugging output for failing test on Snow LeopardChristian Heimes2013-10-121-7/+12
| |
* | mergeChristian Heimes2013-10-111-2/+3
|\ \
| * | test_os: report tests as skipped when os.statvfs() fails with ENOSYSVictor Stinner2013-10-111-2/+3
| | |
* | | Issue #19209: fix structseq testChristian Heimes2013-10-111-1/+1
|/ /
* | Issue #19209: Remove import of copyreg from the os module to speed upChristian Heimes2013-10-113-28/+26
| | | | | | | | | | | | interpreter startup. stat_result and statvfs_result are now hard-coded to reside in the os module. The patch is based on Victor Stinner's patch.
* | Also test that the locale module isn't loaded during normal startupChristian Heimes2013-10-111-0/+2
| |
* | Issue #19205 fix 406529adf156Christian Heimes2013-10-111-1/+1
| | | | | | | | I forgot to hit save.
* | Issue #19205: Don't import the 're' module in site and sysconfig module toChristian Heimes2013-10-113-4/+21
| | | | | | | | to speed up interpreter start.
* | Issue #9548: Add a minimal "_bootlocale" module that is imported by the _io ↵Antoine Pitrou2013-10-114-21/+45
| | | | | | | | module instead of the full locale module.
* | Fix expected checksum for new unicodedata (after full rebuild)Antoine Pitrou2013-10-111-1/+1
| |
* | #19192: Give up on time.xmlrpc.com as an xmlrpc network test.R David Murray2013-10-112-29/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | time.xmlrpc.com has come and gone over the years, and has been gone again for a while. The test did test one thing that the current xmlrpc tests don't: the use of multiple levels of attribute names in the call. So in addition to removing the network test, we add a test in xmlrpc of dotted name access. There should also be a test for when dotted name access is disallowed, but that requires more extensive test harness refactoring, and in any case was not tested by the network test we are deleting, since it is a server-side setting. This is a slightly simplified version of a patch by Vajrasky Kok.
* | Rename contextlib.ignored() to contextlib.ignore().Raymond Hettinger2013-10-112-8/+8
| |
* | upgrade unicode db to 6.3.0 (closes #19221)Benjamin Peterson2013-10-101-1/+1
| |
* | 18764: remove the problematic 'print' alias for the PDB 'p' command.R David Murray2013-10-102-8/+9
| | | | | | | | | | | | So that it no longer shadows the print function. Patch by Connor Osborn, doc and test changes by R. David Murray.
* | Issue #15805: Add contextlib.redirect_stdout()Raymond Hettinger2013-10-102-1/+48
| |
* | Whitespace normalization.Tim Peters2013-10-091-16/+16
| |
* | Issue 19158: a rare race in BoundedSemaphore could allow .release() too often.Tim Peters2013-10-092-3/+23
|\ \ | |/
| * Issue 19158: a rare race in BoundedSemaphore could allow .release() too often.Tim Peters2013-10-092-3/+23
| |
* | Issue #18948: improve SuppressCoreFiles to include Windows crash popup ↵Antoine Pitrou2013-10-087-87/+72
| | | | | | | | | | | | suppression, and use it in more tests. Patch by Valerie Lambert and Zachary Ware.
* | Issue #18037: Do not escape '\u' and '\U' in raw strings.Serhiy Storchaka2013-10-082-3/+2
|\ \ | |/
| * Issue #18037: Do not escape '\u' and '\U' in raw strings.Serhiy Storchaka2013-10-082-3/+2
| |
| * Issue 14927: Remove a docstring line that is no longer applicable.Raymond Hettinger2013-10-061-1/+0
| |
* | Close #19156: add tests and fix for Enum helper edge cases. Patch from CliffM.Ethan Furman2013-10-072-2/+33
| |
* | test_import.test_module_with_large_stack(): unload the test moduleVictor Stinner2013-10-061-1/+9
| | | | | | | | | | Ensure that the module is unloaded to be able to run the test more than once, and to not leak memory.
* | Issue #19182: Fixed socket leak on exception when connecting.Vinay Sajip2013-10-061-1/+5
| |
* | Minor clean-up of function parameters in random().Raymond Hettinger2013-10-061-12/+17
|\ \ | |/
| * Minor clean-up of function parameters in random().Raymond Hettinger2013-10-061-11/+17
| |
* | mergeRaymond Hettinger2013-10-065-3/+16
|\ \
| * | Issue #19087: Improve bytearray allocation in order to allow cheap popping ↵Antoine Pitrou2013-10-052-1/+10
| | | | | | | | | | | | of data at the front (slice deletion).
| * | [issue 19152] Ensure we have actually registered ExtensionFileLoader as an ↵Eric Snow2013-10-052-2/+3
| | | | | | | | | | | | ExecutionLoader.
| * | #19166: merge with 3.3.Ezio Melotti2013-10-051-0/+3
| |\ \ | | |/
| | * #19166: use an unused var in a test. Patch by Vajrasky Kok.Ezio Melotti2013-10-051-0/+3
| | |
* | | Issue #19169: Micro refactoring with a micro benefit for brevity and speed.Raymond Hettinger2013-10-061-2/+2
| | |
* | | Strengthen one of the collections.Counter() testsRaymond Hettinger2013-10-061-0/+2
|/ /
* | mergeRaymond Hettinger2013-10-041-0/+24
|\ \ | |/
| * Issue #18594: Make the C code more closely match the pure python code.Raymond Hettinger2013-10-041-0/+24
| |
| * [issue19152] Revert 832579dbafd6.Eric Snow2013-10-032-7/+0
| |
| * [issue19152] Add ExtensionFileLoader.get_filename().Eric Snow2013-10-032-0/+7
| |
| * [issue19151] Fix docstring and use of _get_suppported_file_loaders() to ↵Eric Snow2013-10-031-2/+2
| | | | | | | | reflect 2-tuples.
* | Issue #16803: Run test.test_importlib.test_abc under bothBrett Cannon2013-10-042-120/+308
| | | | | | | | _frozen_importlib and source.
* | Issue #18716: Deprecate the formatter moduleBrett Cannon2013-10-042-5/+7
| |
* | Remove builtin "caching" in pprintAntoine Pitrou2013-10-031-28/+22
| |
* | [issue19152] Add ExtensionFileLoader.get_filename().Eric Snow2013-10-032-0/+7
| |