summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
...
* | Issue #19703: Update pydoc to use the new importer APIs.Eric Snow2014-01-072-4/+15
| |
* | Remove dead PEP 451 code.Eric Snow2014-01-072-22/+0
| |
* | asyncio: Fix deadlock in readexactly(). Fixes issue #20154.Guido van Rossum2014-01-071-10/+19
| |
* | Merge 3.4.0b2 release revisions back into mainline.Larry Hastings2014-01-063-6/+30
|\ \
| * | Issue19995: %o, %x, %X now only accept intsEthan Furman2014-01-053-6/+30
| | |
* | | Bump version number for 3.4.0b2.v3.4.0b2Larry Hastings2014-01-052-2/+2
| | |
* | | Regenerated pydoc/topics.py, and fix a "suspicious" doc error.Larry Hastings2014-01-051-5/+5
|/ /
* | Issue 20123: Disable a problematic test.Eric Snow2014-01-051-2/+3
| |
* | Issue 20123: try using a different builtin module in a pydoc test.Eric Snow2014-01-051-2/+2
| | | | | | | | | | | | The test is failing on one of the stable FreeBSD buildbots. It seems unlikely that the gc module would not be available, so switching to _imp may not fix the problem.
* | whatsnew: XMLPullParser, plus some doc updates.R David Murray2014-01-051-1/+1
| | | | | | | | | | | | | | | | | | | | I was confused by the text saying that read_events "iterated", since it actually returns an iterator (that's what a generator does) that the caller must then iterate. So I tidied up the language. I'm not sure what the sentence "Events provided in a previous call to read_events() will not be yielded again." is trying to convey, so I didn't try to fix that. Also fixed a couple more news items.
* | Issue 20123: Fix pydoc.synopsis() for "binary" modules.Eric Snow2014-01-052-23/+75
| | | | | | | | Also add missing tests to test_pydoc.
* | Issue #19708: Update pkgutil to use the new importer APIs.Eric Snow2014-01-042-15/+30
| |
* | Issue #19713: Move away from using find_module/load_module.Eric Snow2014-01-041-4/+5
| |
* | Issue #19927: Add __eq__ to path-based loaders in importlib.Eric Snow2014-01-044-2/+37
| |
* | * Issue #16113: Remove sha3 module again.Martin v. Löwis2014-01-032-120/+2
| | | | | | | | Patch by Christian Heimes, with modifications.
* | Issue #20097: Fix bad use of "self" in importlib's WindowsRegistryFinder.Eric Snow2014-01-032-1/+30
| |
* | Issue #18585: speed zipfile import by only generating zipfile._ZipDecryptor ↵Daniel Holth2014-01-031-1/+3
| | | | | | | | on demand
* | audioop: adpcm2lin() and lin2adpcm() now raises a TypeError instead of aVictor Stinner2014-01-031-0/+5
| | | | | | | | SystemError if the state type is invalid.
* | asyncio: make PY34 symbol private (rename it to _PY34)Victor Stinner2014-01-021-2/+2
| |
* | Issue #20111: pathlib.Path.with_suffix() now sanity checks the given suffix.Antoine Pitrou2014-01-022-0/+26
| |
* | merge 3.3 (closes #20108)Benjamin Peterson2014-01-021-1/+3
|\ \ | |/
| * avoid parameter name clash (closes #20108)Benjamin Peterson2014-01-021-1/+3
| |
* | Issue #20101: Merge with 3.3Zachary Ware2014-01-021-1/+2
|\ \ | |/
| * Issue #20101: Allow test_monotonic to pass on Windows machines on whichZachary Ware2014-01-021-1/+2
| | | | | | | | | | | | time.get_clock_info('monotonic').resolution == 0.015600099999999999 This is just a workaround pending a real resolution to #20101.
* | Update pip to the released 1.5Donald Stufft2014-01-023-16/+10
| |
* | (Merge 3.3) Issue #18829: Add tests for the csv module for invalid charactersVictor Stinner2014-01-021-0/+14
|\ \ | |/ | | | | (delimiter, escapechar, quotechar)
| * Issue #18829: Add tests for the csv module for invalid characters (delimiter,Victor Stinner2014-01-021-0/+13
| | | | | | | | escapechar, quotechar)
* | Issue #20055: Fix test_shutil under Windows with symlink privileges held.Antoine Pitrou2014-01-011-13/+19
|\ \ | |/ | | | | Patch by Vajrasky Kok.
| * Issue #20055: Fix test_shutil under Windows with symlink privileges held.Antoine Pitrou2014-01-011-13/+19
| | | | | | | | Patch by Vajrasky Kok.
| * Backporing the fix from Issue #12692Senthil Kumaran2013-12-292-0/+7
| |
* | Update setuptools to 2.0.2Donald Stufft2013-12-312-1/+1
| |
* | Update pip to 1.5rc4Donald Stufft2013-12-312-1/+1
| |
* | Issue #19544, #6516: check ZLIB_SUPPORT, not zlib (which might not be bound)Zachary Ware2013-12-301-1/+1
| |
* | Issue19619: skip zlib error test when zlib not availableZachary Ware2013-12-301-1/+2
| |
* | Issue #19544, #6516: check ZLIB_SUPPORT, not zlib (which might not be bound)Zachary Ware2013-12-301-1/+1
| |
* | Fix breakage in TestSuite.countTestCases() introduced by issue #11798.Antoine Pitrou2013-12-282-4/+43
| |
* | Issue #19918: Fix PurePath.relative_to() under Windows.Antoine Pitrou2013-12-282-40/+65
| |
* | Export asyncio.iscoroutine[function].Guido van Rossum2013-12-281-0/+1
| |
* | Issue #19422: Explicitly disallow non-SOCK_STREAM sockets in the ssl module, ↵Antoine Pitrou2013-12-282-0/+16
|\ \ | |/ | | | | rather than silently let them emit clear text data.
| * Issue #19422: Explicitly disallow non-SOCK_STREAM sockets in the ssl module, ↵Antoine Pitrou2013-12-282-0/+17
| | | | | | | | rather than silently let them emit clear text data.
| * #18116: backport fix to 3.3 since real-world failure mode demonstrated.R David Murray2013-12-273-46/+209
| | | | | | | | | | | | | | | | | | | | In issue 20074 it was pointed out that getpass would fail with a traceback if stdin was, for example /dev/null, which is a non-unlikely scenario. Also backported the tests from issue 17484 as modified by issue 18116. (What I really did was copy getpass.py and test_getpass.py from their state on tip as of 17bd04fbf3d3).
* | Issue #19648: implement empty tests in pickletester. Patch by Gennadiy Zlobin.Antoine Pitrou2013-12-281-2/+10
| |
* | Update bundled pip to 1.5rc3Donald Stufft2013-12-272-1/+1
| |
* | Issue #20046: Locale alias table no longer contains entities which can beSerhiy Storchaka2013-12-262-426/+79
| | | | | | | | calculated. Generalized support of the euro modifier.
* | Issue #20027: Fixed locale aliases for devanagari locales.Serhiy Storchaka2013-12-262-3/+18
|\ \ | |/
| * Issue #20027: Fixed locale aliases for devanagari locales.Serhiy Storchaka2013-12-262-3/+18
| |
* | Issue #20067: Tkinter variables now work when wantobjects is false.Serhiy Storchaka2013-12-262-9/+12
|\ \ | |/
| * Issue #20067: Tkinter variables now work when wantobjects is false.Serhiy Storchaka2013-12-262-9/+12
| |
* | - Issue #20070: Don't run test_urllib2net when network resources are notdoko@ubuntu.com2013-12-261-1/+2
| | | | | | | | enabled.
* | Issue #19938: Re-enabled test_bug_1333982 in test_dis, which had beenZachary Ware2013-12-261-34/+31
|\ \ | |/ | | | | disabled since 3.0 due to the changes in listcomp handling.