summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
...
* | | | Issue #16803: Have test.test_importlib.builtin test both frozen andBrett Cannon2013-10-252-26/+33
* | | | Issue #16803: Stop having test.test_importlib.abc ABCs inherit fromBrett Cannon2013-10-259-16/+16
* | | | test_selectors: make timeout-related errors report the actual elapsed timeout.Charles-François Natali2013-10-251-4/+5
* | | | test_selectors: rename test_interrupted_retry() (since it doesn't actuallyCharles-François Natali2013-10-251-1/+1
* | | | Issue 19384: Fix test_py_compile for root user, patch by Claudiu Popa.Christian Heimes2013-10-251-0/+3
* | | | Issue #16595: prlimit() needs Linux kernel 2.6.36+Christian Heimes2013-10-251-0/+1
* | | | remove unused imports from statistics moduleChristian Heimes2013-10-251-2/+0
* | | | Issue #19288: Fixed the "in" operator of dbm.gnu databases for stringSerhiy Storchaka2013-10-241-0/+1
|\ \ \ \ | |/ / /
| * | | Issue #19288: Fixed the "in" operator of dbm.gnu databases for stringSerhiy Storchaka2013-10-241-0/+1
* | | | Issue #19287: Fixed the "in" operator of dbm.ndbm databases for stringSerhiy Storchaka2013-10-241-0/+1
|\ \ \ \ | |/ / /
| * | | Issue #19287: Fixed the "in" operator of dbm.ndbm databases for stringSerhiy Storchaka2013-10-241-0/+1
* | | | Close #19379: Lazily import linecache in the warnings module, to make startup...Antoine Pitrou2013-10-241-4/+2
* | | | Issue #19327: Fixed the working of regular expressions with too big charset.Serhiy Storchaka2013-10-242-1/+4
|\ \ \ \ | |/ / /
| * | | Issue #19327: Fixed the working of regular expressions with too big charset.Serhiy Storchaka2013-10-242-1/+4
* | | | #17400: correct handling of 100.64.0.0/10, fixing the docs and updating NEWSPeter Moody2013-10-242-13/+18
* | | | merge from 3.3: Increase the test coverage of macurl2path module. Patch by Co...Senthil Kumaran2013-10-243-21/+33
|\ \ \ \ | |/ / /
| * | | Increase the coverage of macurl2path. Patch by Colin Williams.Senthil Kumaran2013-10-243-21/+31
* | | | Issue #19360: fix test_site when Python is installed into $HOME/.localAntoine Pitrou2013-10-231-2/+8
|\ \ \ \ | |/ / /
| * | | Issue #19360: fix test_site when Python is installed into $HOME/.localAntoine Pitrou2013-10-231-2/+8
* | | | Issue #19365: Optimized the parsing of long replacement string in re.sub*()Serhiy Storchaka2013-10-231-44/+30
* | | | Issue #19352: Fix unittest discovery when a module can be reached through sev...Antoine Pitrou2013-10-232-3/+25
|\ \ \ \ | |/ / /
| * | | Issue #19352: Fix unittest discovery when a module can be reached through sev...Antoine Pitrou2013-10-232-3/+25
* | | | Issue #19340: Fix test_sysconfig when Python is built with an empty prefix.Antoine Pitrou2013-10-231-2/+4
|\ \ \ \ | |/ / /
| * | | Issue #19340: Fix test_sysconfig when Python is built with an empty prefix.Antoine Pitrou2013-10-231-2/+4
* | | | [Issue #19357] Ensure module "loaded" during tests gets forgotten.Eric Snow2013-10-231-1/+1
|\ \ \ \ | |/ / /
| * | | [Issue #19357] Ensure module "loaded" during tests gets forgotten.Eric Snow2013-10-231-1/+1
* | | | #17400: fix documentation, add cache to is_global and correctly handle 100.64...Peter Moody2013-10-222-3/+6
* | | | Issue #15207: Fix mimetypes to read from correct area in Windows registry (Or...Tim Golden2013-10-222-13/+16
|\ \ \ \ | |/ / /
| * | | Issue #15207: Fix mimetypes to read from correct area in Windows registry (Or...Tim Golden2013-10-222-11/+14
* | | | Merge 3.4.0a4 release head back into trunk.Larry Hastings2013-10-2237-587/+1081
|\ \ \ \
| * | | | Issue #19030: fix new pydoc tests for --without-doc-stringsEthan Furman2013-10-221-5/+22
| * | | | Issue #18742: Rework the internal hashlib construtor to pave the road for ABCs.Christian Heimes2013-10-222-33/+43
| * | | | Make resource tests more robust.Christian Heimes2013-10-221-5/+8
| * | | | Issue #16595: Add prlimit() to resource moduleChristian Heimes2013-10-221-0/+12
| * | | | Issue #19324: Expose Linux-specific constants in resource moduleChristian Heimes2013-10-221-0/+10
| * | | | Fix asyncio issue #19293 (hangs on AIX).Guido van Rossum2013-10-221-8/+4
| * | | | Unsilence several asyncio AIX tests that no longer hang, and silence a new hang.Guido van Rossum2013-10-221-12/+3
| * | | | Close #19263: add tests to ensure __objclass__ correctly set.Ethan Furman2013-10-221-1/+116
| * | | | Switch subprocess stdin to a socketpair, attempting to fix issue #19293 (AIX ...Guido van Rossum2013-10-222-4/+32
| * | | | Avoid test_asyncio hang on AIX.Guido van Rossum2013-10-221-0/+3
| * | | | add filtering of individual files to PyZipFileChristian Tismer2013-10-222-2/+40
| * | | | asyncio: be more lenient if we don't understand status returned by waitpid().Guido van Rossum2013-10-212-14/+14
| * | | | #17400; ipaddress should make it easy to identify rfc6598 addressesPeter Moody2013-10-212-11/+74
| * | | | Fix test_pydoc failure introduced by 2f09a6980e1a (issue #19030).Charles-François Natali2013-10-211-14/+14
| * | | | Issue #19170: telnetlib: use selectors.Charles-François Natali2013-10-212-274/+100
| * | | | #19274: use captured_stdout() in the test suite; add NEWS entry.Georg Brandl2013-10-211-8/+5
| * | | | Issue #19030: final pieces for proper location of various class attributes lo...Ethan Furman2013-10-214-31/+226
| * | | | add a filterfunc to zip file.PyZipFile.writepy, issue 19274Christian Tismer2013-10-212-157/+186
| * | | | Issue 19306: Add extra hints to faulthandler stack dumps that they are upside...Guido van Rossum2013-10-211-9/+9
| * | | | #8964: merge with 3.3.Ezio Melotti2013-10-212-3/+29
| |\ \ \ \ | | |/ / /