Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | bpo-29703: asyncio: Fix creating new event loops in child processes. (#411) | Yury Selivanov | 2017-03-03 | 1 | -0/+22 |
| | |||||
* | bpo-28598: Support __rmod__ for RHS subclasses of str in % string formatting ↵ | Martijn Pieters | 2017-02-27 | 1 | -0/+9 |
| | | | | operations (#94) | ||||
* | bpo-29376: Fix assertion error in threading._DummyThread.is_alive() (GH-329) | Xiang Zhang | 2017-02-27 | 1 | -0/+3 |
| | |||||
* | bpo-29110: Fix file object leak in `aifc.open` (GH-311) | INADA Naoki | 2017-02-26 | 1 | -1/+17 |
| | | | | (cherry picked from commit 03f68b6) (GH-162) (cherry picked from commit 5dc33ee) (GH-293) | ||||
* | [3.5] bpo-28556: Update to typing: treat subscripted generics as proxies ↵ | Mariatta | 2017-02-25 | 1 | -0/+35 |
| | | | | | | | (GH-265) (GH-269) (cherry picked from commit abb3b8ad94d699c8560d94ee9bac9c917b382abe) (cherry picked from commit 365cb5bb9069273e6970c9d5d17ee2fe5003e7ac) | ||||
* | [3.5] bpo-29532: Altering a kwarg dictionary passed to functools.partial() ↵ | Serhiy Storchaka | 2017-02-22 | 1 | -0/+9 |
| | | | | no longer affects a partial object after creation. (#222) | ||||
* | bpo-29602: fix signed zero handling in complex constructor. (#203) (#205) | Mark Dickinson | 2017-02-20 | 1 | -0/+23 |
| | | | | | | | * Fix incorrect handling of signed zeros for complex-related classes. * Add Misc/NEWS entry. (cherry picked from commit 112ec38c15b388fe025ccb85369a584d218b1160) | ||||
* | [3.5] bpo-29571: Use correct locale encoding in test_re (#149) (#154) | Nick Coghlan | 2017-02-19 | 1 | -1/+1 |
| | | | | | | | ``local.getlocale(locale.LC_CTYPE)`` and ``locale.getpreferredencoding(False)`` may give different answers in some cases (such as the ``en_IN`` locale). ``re.LOCALE`` uses the latter, so update the test case to match. | ||||
* | bpo-28556: Various updates to typing (#28) (#78) | Mariatta | 2017-02-13 | 2 | -25/+226 |
| | | | | | | | | | | | | | | | | | | various updates from upstream python/typing repo: - Added typing.Counter and typing.ChainMap generics - More flexible typing.NamedTuple - Improved generic ABC caching - More tests - Bugfixes - Other updates * Add Misc/NEWS entry * Add issue number Contributed by Ivan Levkivskyi @ilevkivskyi (cherry picked from commit b692dc8475a032740576129d0990ddc3edccab2b) | ||||
* | Issue #29416: Prevent infinite loop in pathlib.Path.mkdir | Steve Dower | 2017-02-04 | 1 | -0/+11 |
| | |||||
* | Issue #29444: Fixed out-of-bounds buffer access in the group() method of | Serhiy Storchaka | 2017-02-04 | 1 | -0/+10 |
| | | | | the match object. Based on patch by WGH. | ||||
* | Fixes #24875: pip can now be installed in a venv with --system-site-packages. | Vinay Sajip | 2017-02-02 | 1 | -9/+16 |
| | |||||
* | Issue #29300: test_struct tests unpack_from() with keywords | Victor Stinner | 2017-02-02 | 1 | -0/+4 |
| | | | | | Add an unit test on the _struct.Struct.unpack_from() method to test passing arguments as keywords. | ||||
* | Issue #29337: Fixed possible BytesWarning when compare the code objects. | Serhiy Storchaka | 2017-01-24 | 1 | -0/+3 |
| | | | | Warnings could be emitted at compile time. | ||||
* | Issue #29273: Remove unneeded workaround to restore locale | Martin Panter | 2017-01-23 | 1 | -11/+0 |
| | | | | | | The “readline” module already has a workaround using setlocale(LC_CTYPE, NULL). The code in test___all__ calls getlocale(), which can subtly alter the locale string and cause the test framework to complain. | ||||
* | Skip the test requiring ctypes if ctypes is unavailable. | Gregory P. Smith | 2017-01-23 | 1 | -1/+6 |
| | | | | prevents http://buildbot.python.org/all/builders/x86%20Ubuntu%20Shared%203.x/builds/240/steps/test/logs/stdio | ||||
* | typo fix, extra '.' :) | Gregory P. Smith | 2017-01-23 | 1 | -1/+1 |
| | |||||
* | Issue #28556: Allow defining methods in NamedTuple class syntax (#362) | Guido van Rossum | 2017-01-23 | 1 | -5/+27 |
| | |||||
* | Issue #28556: various style fixes for typing.py | Guido van Rossum | 2017-01-23 | 1 | -10/+21 |
| | |||||
* | Issue #29335: Fix subprocess.Popen.wait() when the child process has | Gregory P. Smith | 2017-01-23 | 1 | -0/+41 |
| | | | | exited to a stopped instead of terminated state (ex: when under ptrace). | ||||
* | Issue #29290: argparse help messages won't wrap at non-breaking spaces. | Xiang Zhang | 2017-01-22 | 1 | -0/+17 |
| | |||||
* | Issue #29198: add AsyncGenerator (Jelle Zijlstra) | Guido van Rossum | 2017-01-18 | 1 | -0/+42 |
| | |||||
* | Issue #28556: allow default values in class form of NamedTuple -- Jelle Zijlstra | Guido van Rossum | 2017-01-18 | 1 | -0/+26 |
| | |||||
* | Issue #28556: merge 5 more typing changes from upstream (#340, #344, #348, ↵ | Guido van Rossum | 2017-01-18 | 1 | -4/+33 |
| | | | | #349, #350) | ||||
* | Issue #29011: Fix an important omission by adding Deque to the typing module. | Raymond Hettinger | 2017-01-17 | 1 | -0/+11 |
| | |||||
* | Issues #1621, #29145: Test for str.join() overflow | Martin Panter | 2017-01-12 | 1 | -0/+7 |
| | |||||
* | Issue #22980: Skip a sysconfig test if _ctypes is not available. | Martin Panter | 2017-01-13 | 1 | -2/+4 |
| | | | | Extracted from revision a1daf2d289ad by Zachary Ware. | ||||
* | Issue #28969: Fixed race condition in C implementation of functools.lru_cache. | Serhiy Storchaka | 2017-01-12 | 1 | -0/+15 |
| | | | | | KeyError could be raised when cached function with full cache was simultaneously called from differen threads with the same uncached arguments. | ||||
* | Fix script_helper.run_python_until_end(): copy SYSTEMROOT | Victor Stinner | 2017-01-12 | 1 | -7/+18 |
| | | | | | | Windows requires at least the SYSTEMROOT environment variable to start Python. If run_python_until_end() doesn't copy SYSTEMROOT, the function always fail on Windows. | ||||
* | Issue #25591: Fix test_imaplib if ssl miss | Victor Stinner | 2017-01-12 | 1 | -1/+1 |
| | |||||
* | Issue #29220: Improved fix and test. | Vinay Sajip | 2017-01-11 | 1 | -0/+8 |
| | |||||
* | Issue #29142: Fix suffixes in no_proxy handling in urllib. | Xiang Zhang | 2017-01-09 | 1 | -1/+2 |
| | | | | | | In urllib.request, suffixes in no_proxy environment variable with leading dots could match related hostnames again (e.g. .b.c matches a.b.c). Patch by Milan Oberkirch. | ||||
* | Issue #28815: Use new exception subclasses | Martin Panter | 2017-01-08 | 1 | -7/+3 |
| | |||||
* | test_curses - substitute self.skip() with self.skipTest() | Xavier de Gaye | 2017-01-06 | 1 | -2/+2 |
| | |||||
* | Issue #29156: Remove superfluous pow test. | Serhiy Storchaka | 2017-01-04 | 1 | -3/+0 |
| | | | | | test_powlong is the same as test_powint. Patch by Lukas Schwaighofer. | ||||
* | Issue #15812: inspect.getframeinfo() now correctly shows the first line of a ↵ | Berker Peksag | 2017-01-02 | 1 | -0/+5 |
| | | | | | | context Patch by Sam Breese. | ||||
* | Issue #26267: Improve uuid.UUID documentation | Berker Peksag | 2016-12-31 | 1 | -0/+4 |
| | | | | | | | | * Document how comparison of UUID objects work * Document str(uuid) returns the braceless standard form * Add a test for comparison of a UUID object with a non-UUID object Patch by Ammar Askar. | ||||
* | Issue #13051: Fixed recursion errors in large or resized curses.textpad.Textbox. | Serhiy Storchaka | 2016-12-28 | 1 | -0/+9 |
| | | | | Based on patch by Tycho Andersen. | ||||
* | Issue #9770: curses.ascii predicates now work correctly with negative integers. | Serhiy Storchaka | 2016-12-28 | 1 | -0/+19 |
| | |||||
* | Issue #29073: bytearray formatting no longer truncates on first null byte. | Serhiy Storchaka | 2016-12-28 | 1 | -0/+7 |
| | |||||
* | Issue #28427: old keys should not remove new values from | Antoine Pitrou | 2016-12-27 | 1 | -0/+12 |
| | | | | WeakValueDictionary when collecting from another thread. | ||||
* | #25591: improve imap tests. | R David Murray | 2016-12-25 | 1 | -0/+330 |
| | | | | Patch by Maciej Szulik. | ||||
* | Issue #28815: Skip TIPC tests if /proc/modules is not readable | Martin Panter | 2016-12-24 | 1 | -3/+11 |
| | | | | Based on patch by Patrila. | ||||
* | Issue #28871: Fixed a crash when deallocate deep ElementTree. | Serhiy Storchaka | 2016-12-21 | 1 | -0/+10 |
| | |||||
* | Issue #28147: Fix a memory leak in split-table dictionaries | INADA Naoki | 2016-12-20 | 1 | -0/+18 |
| | | | | setattr() must not convert combined table into split table. | ||||
* | Issue #28950: Disallow -j0 combined with -T/-l/-M in regrtest. | Xiang Zhang | 2016-12-19 | 2 | -3/+6 |
| | |||||
* | Issue #19542: Fix bugs in WeakValueDictionary.setdefault() and ↵ | Antoine Pitrou | 2016-12-19 | 1 | -0/+41 |
| | | | | | | | | WeakValueDictionary.pop() when a GC collection happens in another thread. Original patch and report by Armin Rigo. | ||||
* | Issue #25677: Correct syntax error caret for indented blocks. | Martin Panter | 2016-12-11 | 1 | -0/+33 |
| | | | | Based on patch by Michael Layzell. | ||||
* | Issue #20191: Fixed a crash in resource.prlimit() when pass a sequence that | Serhiy Storchaka | 2016-12-19 | 1 | -0/+14 |
| | | | | doesn't own its elements as limits. | ||||
* | Fix spelling and grammar in code comments and documentation | Martin Panter | 2016-12-18 | 1 | -1/+1 |
| |