Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | bpo-28598: Support __rmod__ for RHS subclasses of str in % string formatting ↵ | Martijn Pieters | 2017-02-27 | 1 | -0/+3 | |
| | | | | operations (#94) | |||||
* | bpo-29376: Fix assertion error in threading._DummyThread.is_alive() (GH-329) | Xiang Zhang | 2017-02-27 | 1 | -0/+2 | |
| | ||||||
* | bpo-29110: Fix file object leak in `aifc.open` (GH-311) | INADA Naoki | 2017-02-26 | 1 | -0/+3 | |
| | | | | (cherry picked from commit 03f68b6) (GH-162) (cherry picked from commit 5dc33ee) (GH-293) | |||||
* | Fix unittest.mock._Call: don't ignore name (#307) | Berker Peksag | 2017-02-26 | 1 | -0/+3 | |
| | | | | | | | | | | | | | Issue #28961: Fix unittest.mock._Call helper: don't ignore the name parameter anymore. Patch written by Jiajun Huang. (cherry picked from commits 84b6fb0eea29b3b28a1a11124526b01ec0c9d17a and dea1536fd3a8424d537794cd53715df0989cbbe1) Conflicts: Misc/NEWS | |||||
* | [3.5] bpo-28929: Add to Misc/NEWS (GH-285) | Mariatta | 2017-02-26 | 1 | -0/+2 | |
| | | | | mention bpo-28929 in the Documentation section of What's New in Python 3.5.4 release candidate 1 | |||||
* | bpo-25008: Deprecate smtpd and point to aiosmtpd (#274) (#279) | Barry Warsaw | 2017-02-24 | 1 | -0/+3 | |
| | ||||||
* | [3.5] bpo-29532: Altering a kwarg dictionary passed to functools.partial() ↵ | Serhiy Storchaka | 2017-02-22 | 1 | -0/+3 | |
| | | | | 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/+4 | |
| | | | | | | | * Fix incorrect handling of signed zeros for complex-related classes. * Add Misc/NEWS entry. (cherry picked from commit 112ec38c15b388fe025ccb85369a584d218b1160) | |||||
* | bpo-29347: Fix possibly dereferencing undefined pointers when creating ↵ | Xiang Zhang | 2017-02-20 | 1 | -0/+3 | |
| | | | | weakref objects (#128) (#188) | |||||
* | [3.5] bpo-29571: Use correct locale encoding in test_re (#149) (#154) | Nick Coghlan | 2017-02-19 | 1 | -0/+8 | |
| | | | | | | | ``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-29521 update Misc/ACKS (#111) | Mariatta | 2017-02-15 | 1 | -0/+1 | |
| | | | (cherry picked from commit 6420088b924a23e5de40be6623d2a80b12f71d97) | |||||
* | bpo-28556: Various updates to typing (#28) (#78) | Mariatta | 2017-02-13 | 1 | -0/+7 | |
| | | | | | | | | | | | | | | | | | | 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) | |||||
* | bpo-29438: Fixed use-after-free in key sharing dict (#40) | INADA Naoki | 2017-02-13 | 1 | -0/+2 | |
| | ||||||
* | Fix #29519: weakref spewing exceptions during interp finalization | Łukasz Langa | 2017-02-10 | 1 | -0/+3 | |
| | ||||||
* | Issue #26355: Specify canonical URLs in docs pages | Nick Coghlan | 2017-02-09 | 2 | -0/+4 | |
| | | | | | | | Add canonical header link on each page to corresponding major version of the documentation. Patch by Matthias Bussonnier. | |||||
* | Issue #29319: Prevent RunMainFromImporter overwriting sys.path[0]. | Steve Dower | 2017-02-04 | 1 | -0/+2 | |
| | ||||||
* | Issue #29392: Prevent crash when passing invalid arguments into msvcrt module. | Steve Dower | 2017-02-04 | 1 | -0/+5 | |
| | ||||||
* | Issue #29416: Prevent infinite loop in pathlib.Path.mkdir | Steve Dower | 2017-02-04 | 1 | -0/+2 | |
| | ||||||
* | Issue #29444: Fixed out-of-bounds buffer access in the group() method of | Serhiy Storchaka | 2017-02-04 | 1 | -0/+3 | |
| | | | | the match object. Based on patch by WGH. | |||||
* | Issue #29169: Fix NEWS entry. | doko@ubuntu.com | 2017-02-01 | 1 | -1/+1 | |
| | ||||||
* | - Issue #29169: Update zlib to 1.2.10. | doko@ubuntu.com | 2017-01-31 | 1 | -0/+5 | |
| | ||||||
* | Issue #29349: Fix Python 2 syntax in documentation build code | Martin Panter | 2017-01-29 | 1 | -0/+5 | |
| | ||||||
* | Issue #27867: Function PySlice_GetIndicesEx() is replaced with a macro if | Serhiy Storchaka | 2017-01-25 | 1 | -0/+4 | |
| | | | | | Py_LIMITED_API is not set or set to the value between 0x03050400 and 0x03060000 (not including) or 0x03060100 or higher. | |||||
* | Issue #29083: Fixed the declaration of some public API functions. | Serhiy Storchaka | 2017-01-24 | 1 | -0/+9 | |
| | | | | | | | PyArg_VaParse() and PyArg_VaParseTupleAndKeywords() were not available in limited API. PyArg_ValidateKeywordArguments(), PyArg_UnpackTuple() and Py_BuildValue() were not available in limited API of version < 3.3 when PY_SSIZE_T_CLEAN is defined. | |||||
* | 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 #29335: Fix subprocess.Popen.wait() when the child process has | Gregory P. Smith | 2017-01-23 | 1 | -0/+3 | |
| | | | | 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 | -1/+4 | |
| | ||||||
* | Issue #28735: Fixed the comparison of mock.MagickMock with mock.ANY. | Serhiy Storchaka | 2017-01-21 | 1 | -0/+2 | |
| | ||||||
* | Merge 3.5.3 release head with main 3.5 branch. | Larry Hastings | 2017-01-17 | 1 | -4/+17 | |
|\ | ||||||
| * | Issue #29011: Fix an important omission by adding Deque to the typing module. | Raymond Hettinger | 2017-01-17 | 1 | -4/+16 | |
| | | ||||||
| * | Fix grammar, typos and markup in documentation and code comments | Martin Panter | 2017-01-14 | 1 | -1/+1 | |
| | | | | | | | | | | | | * Indent versionchanged at method level, not class level * Mark up ``--help`` to avoid generating an en dash * Use forward slash in Unix command line with a dollar sign ($) prompt | |||||
| * | Issue #29219: Fixed infinite recursion in the repr of uninitialized | Serhiy Storchaka | 2017-01-13 | 1 | -0/+3 | |
| | | | | | | | | ctypes.CDLL instances. | |||||
| * | Issue #28969: Fixed race condition in C implementation of functools.lru_cache. | Serhiy Storchaka | 2017-01-12 | 1 | -0/+4 | |
| | | | | | | | | | | KeyError could be raised when cached function with full cache was simultaneously called from differen threads with the same uncached arguments. | |||||
| * | Issue #29142: Fix suffixes in no_proxy handling in urllib. | Xiang Zhang | 2017-01-09 | 1 | -0/+3 | |
| | | | | | | | | | | | | 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. | |||||
* | | Post-release updates for 3.5.3. | Larry Hastings | 2017-01-17 | 1 | -1/+13 | |
| | | ||||||
* | | Version bump for Python 3.5.3.v3.5.3 | Larry Hastings | 2017-01-16 | 1 | -5/+1 | |
|/ | ||||||
* | Post-release fixups for Python 3.5.3rc1. | Larry Hastings | 2017-01-03 | 1 | -1/+13 | |
| | ||||||
* | Issue #15812: inspect.getframeinfo() now correctly shows the first line of a ↵ | Berker Peksag | 2017-01-02 | 1 | -0/+3 | |
| | | | | | | context Patch by Sam Breese. | |||||
* | Issue #29094: Offsets in a ZIP file created with extern file object and modes | Serhiy Storchaka | 2017-01-01 | 1 | -0/+3 | |
| | | | | "w" and "x" now are relative to the start of the file. | |||||
* | Issue #29119: Fix weakref in OrderedDict.move_to_end(). Work by Andra Bogildea. | Raymond Hettinger | 2016-12-31 | 2 | -0/+5 | |
| | ||||||
* | Issue #29109: Enhance tracemalloc documentation | Victor Stinner | 2016-12-30 | 1 | -0/+1 | |
| | | | | | | | | | | * Wrong parameter name, 'group_by' instead of 'key_type' * Don't round up numbers when explaining the examples. If they exactly match what can be read in the script output, it is to easier to understand (4.8 MiB vs 4855 KiB) * Fix incorrect method link that was pointing to another module Patch written by Loic Pefferkorn. | |||||
* | Issue #29080: Fixes Misc/NEWS entry | Steve Dower | 2016-12-28 | 1 | -1/+1 | |
| | ||||||
* | Issue #29080: Removes hard dependency on hg.exe from PC/build.bat | Steve Dower | 2016-12-28 | 1 | -0/+2 | |
| | ||||||
* | Issue #13051: Fixed recursion errors in large or resized curses.textpad.Textbox. | Serhiy Storchaka | 2016-12-28 | 2 | -0/+4 | |
| | | | | Based on patch by Tycho Andersen. | |||||
* | Issue #9770: curses.ascii predicates now work correctly with negative integers. | Serhiy Storchaka | 2016-12-28 | 1 | -0/+3 | |
| | ||||||
* | Issue #29073: bytearray formatting no longer truncates on first null byte. | Serhiy Storchaka | 2016-12-28 | 1 | -0/+2 | |
| | ||||||
* | Issue #28427: old keys should not remove new values from | Antoine Pitrou | 2016-12-27 | 1 | -0/+3 | |
| | | | | WeakValueDictionary when collecting from another thread. | |||||
* | Issue #23903: Added missed names to PC/python3.def. | Serhiy Storchaka | 2016-12-27 | 1 | -0/+2 | |
| | ||||||
* | Issue #29078: Add the missing import in datetime.time doc example. | Xiang Zhang | 2016-12-27 | 1 | -1/+1 | |
| | | | | Patch by Dhushyanth Ramasamy. | |||||
* | Issue 28923: Remove editor artifacts from Tix.py. | Terry Jan Reedy | 2016-12-22 | 1 | -0/+2 | |
| |