summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* Version bump for Python 3.5.0b4.v3.5.0b4Larry Hastings2015-07-251-2/+2
|
* Issue #21697: shutil.copytree() now correctly handles symbolic links that ↵Berker Peksag2015-07-251-0/+3
|\ | | | | | | | | | | point to directories. Patch by Eduardo Seabra and Thomas Kluyver.
| * Issue #21697: shutil.copytree() now correctly handles symbolic links that ↵Berker Peksag2015-07-251-0/+3
| | | | | | | | | | | | point to directories. Patch by Eduardo Seabra and Thomas Kluyver.
* | Issue #14373: Fixed segmentation fault when gc.collect() is called duringSerhiy Storchaka2015-07-251-0/+3
| | | | | | | | constructing lru_cache (C implementation).
* | Issue #24603: merge from 3.4Ned Deily2015-07-241-1/+2
|\ \ | |/
* | Issue #24695: Fix a regression in traceback.print_exception()Berker Peksag2015-07-241-0/+4
| | | | | | | | | | If exc_traceback is None we shouldn't print a traceback header like described in the documentation.
* | Issue #24620: Random.setstate() now validates the value of state last element.Serhiy Storchaka2015-07-241-0/+2
|\ \ | |/
| * Issue #24620: Random.setstate() now validates the value of state last element.Serhiy Storchaka2015-07-241-0/+2
| |
* | Issue #24485: Function source inspection fails on closures.Meador Inge2015-07-241-0/+7
| | | | | | | | | | | | | | | | | | | | | | | | The fix for Issue #21217 introduced a regression that caused `inspect.getsource` to return incorrect results on nested functions. The root cause of the regression was due to switching the implementation to analyze the underlying bytecode instead of the source code. This commit switches things back to analyzing the source code in a more complete way. The original bug and the regression are both fixed by the new source code analysis.
* | Issue #24485: Revert backwards compatibility breaking changes of #21217.Yury Selivanov2015-07-231-4/+0
| |
* | Issue #24687: Plug refleak on SyntaxError in function parameters annotations.Yury Selivanov2015-07-231-0/+3
| |
* | Issue #24688: ast.get_docstring() for 'async def' functions.Yury Selivanov2015-07-231-0/+2
| |
* | Issue #22153: Improve unittest docs. Patch from Martin Panter and evilzero.Robert Collins2015-07-222-0/+3
|\ \ | |/
| * Issue #22153: Improve unittest docs. Patch from Martin Panter and evilzero.Robert Collins2015-07-222-0/+3
| |
* | Issue #24619: New approach for tokenizing async/await.Yury Selivanov2015-07-221-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit fixes how one-line async-defs and defs are tracked by tokenizer. It allows to correctly parse invalid code such as: >>> async def f(): ... def g(): pass ... async = 10 and valid code such as: >>> async def f(): ... async def g(): pass ... await z As a consequence, is is now possible to have one-line 'async def foo(): await ..' functions: >>> async def foo(): return await bar()
* | Issue #24603: Update the Windows build to use OpenSSL 1.0.2dZachary Ware2015-07-221-0/+5
|\ \ | |/
| * Issue #24603: Update the Windows build to use OpenSSL 1.0.2dZachary Ware2015-07-221-2/+2
| |
* | Issue #24669: Fix inspect.getsource() for 'async def' functions.Yury Selivanov2015-07-211-0/+3
| | | | | | | | Patch by Kai Groner.
* | Issue #23573: Restored optimization of bytes.rfind() and bytearray.rfind()Serhiy Storchaka2015-07-201-0/+3
| | | | | | | | for single-byte argument on Linux.
* | Issue #24580: Symbolic group references to open group in re patterns now areSerhiy Storchaka2015-07-181-0/+3
| | | | | | | | explicitly forbidden as well as numeric group references.
* | Issue #24206: Fixed __eq__ and __ne__ methods of inspect classes.Serhiy Storchaka2015-07-181-0/+2
|\ \ | |/
| * Issue #24206: Fixed __eq__ and __ne__ methods of inspect classes.Serhiy Storchaka2015-07-181-0/+2
| |
* | Fixed typos in Misc/NEWS.Serhiy Storchaka2015-07-181-1/+1
| |
* | Issue #21750: mock_open.read_data can now be read from each instance, as itRobert Collins2015-07-171-0/+3
|\ \ | |/ | | | | could in Python 3.3.
| * Issue #21750: mock_open.read_data can now be read from each instance, as itRobert Collins2015-07-171-0/+3
| | | | | | | | could in Python 3.3.
* | Merge 3.4Victor Stinner2015-07-161-0/+2
|\ \ | |/
| * Closes #23247: Fix a crash in the StreamWriter.reset() of CJK codecsVictor Stinner2015-07-161-0/+2
| |
* | Issue #24583: Fix crash when set is mutated while being updated.Raymond Hettinger2015-07-161-0/+2
| |
* | Issue #24631: Fixed regression in the timeit modulu with multyline setup.Serhiy Storchaka2015-07-151-0/+2
| |
* | - Issue #18622: unittest.mock.mock_open().reset_mock would recurse infinitely.Robert Collins2015-07-142-0/+5
|\ \ | |/ | | | | Patch from Nicola Palumbo and Laurent De Buyst.
| * - Issue #18622: unittest.mock.mock_open().reset_mock would recurse infinitely.Robert Collins2015-07-142-0/+5
| | | | | | | | Patch from Nicola Palumbo and Laurent De Buyst.
* | Issue #23661: unittest.mock side_effects can now be exceptions again.Robert Collins2015-07-142-0/+4
| | | | | | | | This was a regression vs Python 3.4. Patch from Ignacio Rossi
* | Issue #24608: chunk.Chunk.read() now always returns bytes, not str.Serhiy Storchaka2015-07-101-0/+2
|\ \ | |/
| * Issue #24608: chunk.Chunk.read() now always returns bytes, not str.Serhiy Storchaka2015-07-101-0/+2
| |
* | - Issue #15014: SMTP.auth() and SMTP.login() now support RFC 4954's optionalBarry Warsaw2015-07-091-0/+3
| | | | | | | | initial-response argument to the SMTP AUTH command.
* | Corrected empty lines in Misc/NEWS.Serhiy Storchaka2015-07-061-1/+8
|\ \ | |/
| * Corrected empty lines in Misc/NEWS.Serhiy Storchaka2015-07-061-3/+8
| |
* | Issue #18684: Fixed reading out of the buffer in the re module.Serhiy Storchaka2015-07-061-0/+2
|\ \ | |/
| * Issue #18684: Fixed reading out of the buffer in the re module.Serhiy Storchaka2015-07-061-0/+2
| |
* | Merge with 3.4: Issue #24259: tarfile now raises a ReadError if an archive ↵Lars Gustäbel2015-07-061-0/+3
|\ \ | |/ | | | | is truncated inside a data segment.
| * Issue #24259: tarfile now raises a ReadError if an archive is truncated ↵Lars Gustäbel2015-07-061-0/+3
| | | | | | | | inside a data segment.
| * merge headsBenjamin Peterson2015-07-051-2/+2
| |\
* | \ Merge with ongoing work in 3.5 branch.Larry Hastings2015-07-051-0/+4
|\ \ \
| * | | set items in dict displays from left to right (closes #24569)Benjamin Peterson2015-07-051-0/+2
| | | |
| * | | add news section for next betaBenjamin Peterson2015-07-051-0/+12
| | | |
| * | | merge headsBenjamin Peterson2015-07-051-0/+6
| |\ \ \
| * \ \ \ merge 3.4 (#24407)Benjamin Peterson2015-07-051-0/+2
| |\ \ \ \ | | | |/ / | | |/| |
| | * | | merge 3.3 (#24407)Benjamin Peterson2015-07-051-0/+2
| | |\ \ \
| | | * | | protect against mutation of the dict during insertion (closes #24407)Benjamin Peterson2015-07-051-0/+2
| | | | | |
* | | | | | Post-release fixes for Python 3.5.0b3.Larry Hastings2015-07-051-0/+12
| |_|_|/ / |/| | | |