summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
* Issue #26041: Remove "will be removed in Python 3.7" from description messagesBerker Peksag2016-04-242-8/+4
|\ | | | | | | | | | | | | We will keep platform.dist() and platform.linux_distribution() to make porting from Python 2 easier. Patch by Kumaripaba Miyurusara Athukorala.
| * Issue #26041: Remove "will be removed in Python 3.7" from description messagesBerker Peksag2016-04-242-8/+4
| | | | | | | | | | | | | | We will keep platform.dist() and platform.linux_distribution() to make porting from Python 2 easier. Patch by Kumaripaba Miyurusara Athukorala.
* | Issue #26089: Remove duplicate field 'license' from DistributionMetadataBerker Peksag2016-04-231-2/+1
| | | | | | | | | | | | It was renamed to 'license' in 178d19cff163. Patch by Augustin Laville.
* | Issue #26822: itemgetter, attrgetter and methodcaller objects no longerSerhiy Storchaka2016-04-231-0/+9
|\ \ | |/ | | | | silently ignore keyword arguments.
| * Issue #26822: itemgetter, attrgetter and methodcaller objects no longerSerhiy Storchaka2016-04-231-0/+9
| | | | | | | | silently ignore keyword arguments.
* | Issue #26733: Disassembling a class now disassembles class and static methods.Serhiy Storchaka2016-04-232-3/+52
|\ \ | |/ | | | | Patch by Xiang Zhang.
| * Issue #26733: Disassembling a class now disassembles class and static methods.Serhiy Storchaka2016-04-232-3/+52
| | | | | | | | Patch by Xiang Zhang.
* | Additional grammar fixMartin Panter2016-04-191-1/+1
| |
* | Merge doc and comment fixes from 3.5Martin Panter2016-04-193-3/+3
|\ \ | |/
| * Fix spelling (inital), grammar (may translates) in documentation, commentsMartin Panter2016-04-193-3/+3
| |
| * Backport test_gdb fix for s390x buildbotsVictor Stinner2016-04-191-17/+7
| |
* | Merge 3.5: issue #26801Victor Stinner2016-04-192-1/+3
|\ \ | |/
| * Fix shutil.get_terminal_size() error handlingVictor Stinner2016-04-192-1/+3
| | | | | | | | | | | | | | | | Issue #26801: Fix error handling in shutil.get_terminal_size(), catch AttributeError instead of NameError. Patch written by Emanuel Barry. test_shutil: skip the functional test using "stty size" command if os.get_terminal_size() is missing.
* | Merge with 3.5Zachary Ware2016-04-191-280/+304
|\ \ | |/
| * Replace assert statements with self.assertXxx() callsZachary Ware2016-04-191-280/+304
| | | | | | | | Sync with upstream, see github.com/python/typing/pull/205
* | Issue #24838: Merge test_tarfile.py fix from 3.5.Lars Gustäbel2016-04-191-2/+2
|\ \ | |/
| * Issue #24838: Fix test_tarfile.py for non-utf8 filesystem encodings.Lars Gustäbel2016-04-191-2/+2
| |
* | Issue #24838: Merge tarfile fix from 3.5.Lars Gustäbel2016-04-192-19/+97
|\ \ | |/
| * Issue #24838: tarfile's ustar and gnu formats now correctly calculate name andLars Gustäbel2016-04-192-19/+97
| | | | | | | | link field limits for multibyte character encodings like utf-8.
* | typing.py: merge 3.5->3.6 (Tuple/ellipsis/equality).Guido van Rossum2016-04-182-1/+8
|\ \ | |/
| * typing.py: Consider ellipsis in TupleMeta.__eq__. By Kalle Tuure. ↵Guido van Rossum2016-04-182-1/+8
| | | | | | | | github.com/python/typing/pull/201.
* | Merge 3.5 (test_asyncio)Victor Stinner2016-04-181-1/+3
|\ \ | |/
| * Fix test_asyncio.test_timeout_disable()Victor Stinner2016-04-181-1/+3
| | | | | | | | | | | | | | | | | | | | | | Issue #26777: Fix random failing of the test on the "AMD64 FreeBSD 9.x 3.5" buildbot: File ".../Lib/test/test_asyncio/test_tasks.py", line 2398, in go self.assertTrue(0.09 < dt < 0.11, dt) AssertionError: False is not true : 0.11902812402695417 Replace "< 0.11" with "< 0.15".
* | Issue #26657: Merge http.server fix from 3.5Martin Panter2016-04-182-3/+22
|\ \ | |/
| * Issue #26657: Fix Windows directory traversal vulnerability with http.serverMartin Panter2016-04-182-3/+22
| | | | | | | | | | Based on patch by Philipp Hagemeister. This fixes a regression caused by revision f4377699fd47.
* | Sync test_typing.py with upstream git repo (typing.py was already synced). ↵Guido van Rossum2016-04-181-0/+2
|\ \ | |/ | | | | (3.5->3.6)
| * Sync test_typing.py with upstream git repo (typing.py was already synced).Guido van Rossum2016-04-181-0/+20
| |
* | Issue #26778: Fixed "a/an/and" typos in code comment, documentation and errorSerhiy Storchaka2016-04-1736-43/+44
|\ \ | |/ | | | | messages.
| * Issue #26778: Fixed "a/an/and" typos in code comment and documentation.Serhiy Storchaka2016-04-1736-43/+44
| |
* | Automated merge with ssh://hg.python.org/cpythonSteven D'Aprano2016-04-171-76/+30
|\ \
| * | Shorten secrets module docstring, add function docstrings.Steven D'Aprano2016-04-171-76/+30
| | |
* | | Issue #26717: Merge wsgiref fix from 3.5Martin Panter2016-04-172-1/+25
|\ \ \ | |/ / |/| / | |/
| * Issue #26717: Stop encoding Latin-1-ized WSGI paths with UTF-8Martin Panter2016-04-172-1/+25
| | | | | | | | Patch by Anthony Sottile.
* | Issue #26782: Add STARTUPINFO to subprocess.__all__ on WindowsMartin Panter2016-04-162-3/+3
| |
* | Issue #26782: Merge test_subprocess from 3.5Martin Panter2016-04-161-1/+2
|\ \ | |/
| * Issue #26782: Acknowledge the incomplete status of __all__ in 3.5Martin Panter2016-04-161-1/+2
| | | | | | | | | | Handle is probably meant to be excluded, and STARTUPINFO will be added to __all__ in 3.6.
* | merge 3.5Benjamin Peterson2016-04-161-1/+1
|\ \ | |/
| * test_support -> supportBenjamin Peterson2016-04-161-1/+1
| |
* | merge 3.5 (#26659)Benjamin Peterson2016-04-161-3/+14
|\ \ | |/
| * add gc support to slice (closes #26659)Benjamin Peterson2016-04-161-3/+14
| |
* | Issue #26783: test_os.WalkTests.test_walk_topdown did't test fwalk and bytes.Serhiy Storchaka2016-04-161-1/+1
|\ \ | |/ | | | | Patch by Aviv Palivoda.
| * Issue #26783: test_os.WalkTests.test_walk_topdown did't test fwalk and bytes.Serhiy Storchaka2016-04-161-1/+1
| | | | | | | | Patch by Aviv Palivoda.
* | merge 3.5Senthil Kumaran2016-04-161-2/+53
|\ \ | |/ | | | | | | issue26775 - Improve test coverage for urllib.parse Patch contributed by Luiz Poleto.
| * issue26775 - Improve test coverage for urllib.parseSenthil Kumaran2016-04-161-2/+53
| | | | | | | | Patch contributed by Luiz Poleto.
* | Merge subprocess test from 3.5Martin Panter2016-04-161-15/+14
|\ \ | |/
| * Issue #10838: Run test__all__() everywhere, even if poll() is not availableMartin Panter2016-04-161-15/+14
| |
* | Merge typo fixes from 3.5Martin Panter2016-04-162-3/+3
|\ \ | |/
| * Fix typos in code comments and documentationMartin Panter2016-04-162-3/+3
| |
| * Issue #25609: Backport typing.ContextManager.Brett Cannon2016-04-151-0/+7
| | | | | | | | | | | | This has no semantic impact as the class is guarded with a hasattr() check; this is being done to keep typing.py in sync between Python 3.5 and 3.6 as requested by Guido.
| * Issue #26764: Bacported tests for bytes formatting.Serhiy Storchaka2016-04-151-26/+11
| |