summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
...
* bpo-28598: Support __rmod__ for RHS subclasses of str in % string formatting ↵Martijn Pieters2017-02-271-0/+3
| | | | operations (#94)
* bpo-29376: Fix assertion error in threading._DummyThread.is_alive() (GH-329)Xiang Zhang2017-02-271-0/+2
|
* bpo-29110: Fix file object leak in `aifc.open` (GH-311)INADA Naoki2017-02-261-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 Peksag2017-02-261-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)Mariatta2017-02-261-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 Warsaw2017-02-241-0/+3
|
* [3.5] bpo-29532: Altering a kwarg dictionary passed to functools.partial() ↵Serhiy Storchaka2017-02-221-0/+3
| | | | no longer affects a partial object after creation. (#222)
* bpo-29602: fix signed zero handling in complex constructor. (#203) (#205)Mark Dickinson2017-02-201-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 Zhang2017-02-201-0/+3
| | | | weakref objects (#128) (#188)
* [3.5] bpo-29571: Use correct locale encoding in test_re (#149) (#154)Nick Coghlan2017-02-191-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)Mariatta2017-02-151-0/+1
| | | (cherry picked from commit 6420088b924a23e5de40be6623d2a80b12f71d97)
* bpo-28556: Various updates to typing (#28) (#78)Mariatta2017-02-131-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 Naoki2017-02-131-0/+2
|
* Fix #29519: weakref spewing exceptions during interp finalizationŁukasz Langa2017-02-101-0/+3
|
* Issue #26355: Specify canonical URLs in docs pagesNick Coghlan2017-02-092-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 Dower2017-02-041-0/+2
|
* Issue #29392: Prevent crash when passing invalid arguments into msvcrt module.Steve Dower2017-02-041-0/+5
|
* Issue #29416: Prevent infinite loop in pathlib.Path.mkdirSteve Dower2017-02-041-0/+2
|
* Issue #29444: Fixed out-of-bounds buffer access in the group() method ofSerhiy Storchaka2017-02-041-0/+3
| | | | the match object. Based on patch by WGH.
* Issue #29169: Fix NEWS entry.doko@ubuntu.com2017-02-011-1/+1
|
* - Issue #29169: Update zlib to 1.2.10.doko@ubuntu.com2017-01-311-0/+5
|
* Issue #29349: Fix Python 2 syntax in documentation build codeMartin Panter2017-01-291-0/+5
|
* Issue #27867: Function PySlice_GetIndicesEx() is replaced with a macro ifSerhiy Storchaka2017-01-251-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 Storchaka2017-01-241-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 Storchaka2017-01-241-0/+3
| | | | Warnings could be emitted at compile time.
* Issue #29335: Fix subprocess.Popen.wait() when the child process hasGregory P. Smith2017-01-231-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 Zhang2017-01-221-1/+4
|
* Issue #28735: Fixed the comparison of mock.MagickMock with mock.ANY.Serhiy Storchaka2017-01-211-0/+2
|
* Merge 3.5.3 release head with main 3.5 branch.Larry Hastings2017-01-171-4/+17
|\
| * Issue #29011: Fix an important omission by adding Deque to the typing module.Raymond Hettinger2017-01-171-4/+16
| |
| * Fix grammar, typos and markup in documentation and code commentsMartin Panter2017-01-141-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 uninitializedSerhiy Storchaka2017-01-131-0/+3
| | | | | | | | ctypes.CDLL instances.
| * Issue #28969: Fixed race condition in C implementation of functools.lru_cache.Serhiy Storchaka2017-01-121-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 Zhang2017-01-091-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 Hastings2017-01-171-1/+13
| |
* | Version bump for Python 3.5.3.v3.5.3Larry Hastings2017-01-161-5/+1
|/
* Post-release fixups for Python 3.5.3rc1.Larry Hastings2017-01-031-1/+13
|
* Issue #15812: inspect.getframeinfo() now correctly shows the first line of a ↵Berker Peksag2017-01-021-0/+3
| | | | | | context Patch by Sam Breese.
* Issue #29094: Offsets in a ZIP file created with extern file object and modesSerhiy Storchaka2017-01-011-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 Hettinger2016-12-312-0/+5
|
* Issue #29109: Enhance tracemalloc documentationVictor Stinner2016-12-301-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 entrySteve Dower2016-12-281-1/+1
|
* Issue #29080: Removes hard dependency on hg.exe from PC/build.batSteve Dower2016-12-281-0/+2
|
* Issue #13051: Fixed recursion errors in large or resized curses.textpad.Textbox.Serhiy Storchaka2016-12-282-0/+4
| | | | Based on patch by Tycho Andersen.
* Issue #9770: curses.ascii predicates now work correctly with negative integers.Serhiy Storchaka2016-12-281-0/+3
|
* Issue #29073: bytearray formatting no longer truncates on first null byte.Serhiy Storchaka2016-12-281-0/+2
|
* Issue #28427: old keys should not remove new values fromAntoine Pitrou2016-12-271-0/+3
| | | | WeakValueDictionary when collecting from another thread.
* Issue #23903: Added missed names to PC/python3.def.Serhiy Storchaka2016-12-271-0/+2
|
* Issue #29078: Add the missing import in datetime.time doc example.Xiang Zhang2016-12-271-1/+1
| | | | Patch by Dhushyanth Ramasamy.
* Issue 28923: Remove editor artifacts from Tix.py.Terry Jan Reedy2016-12-221-0/+2
|