Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | [minor] Doc fix in old python doc. | Senthil Kumaran | 2016-04-21 | 1 | -1/+1 | |
| | | ||||||
* | | Merge 3.5 | Victor Stinner | 2016-04-20 | 1 | -10/+4 | |
|\ \ | |/ | ||||||
| * | gdb/libpython.py: inline _type_void_ptr() | Victor Stinner | 2016-04-20 | 1 | -10/+4 | |
| | | | | | | | | The function was only called in _sizeof_void_p() | |||||
* | | Merge 3.5 | Victor Stinner | 2016-04-20 | 1 | -2/+2 | |
|\ \ | |/ | ||||||
| * | Issue #26799: Fix typo in Misc/NEWS | Victor Stinner | 2016-04-20 | 1 | -2/+2 | |
| | | ||||||
* | | Merge 3.5: Issue #26799 | Victor Stinner | 2016-04-20 | 3 | -14/+39 | |
|\ \ | |/ | ||||||
| * | python-gdb.py: get C types at runtime | Victor Stinner | 2016-04-20 | 3 | -14/+39 | |
| | | | | | | | | | | | | | | | | Issue #26799: Fix python-gdb.py: don't get once C types when the Python code is loaded, but get C types on demande. The C types can change if python-gdb.py is loaded before the Python executable. Patch written by Thomas Ilsche. | |||||
* | | Issue #21668: Add also Chi Hsuan Yen to Misc/ACKS | Victor Stinner | 2016-04-20 | 1 | -0/+1 | |
| | | ||||||
* | | Issue #21668: Fix author of the patch. | Victor Stinner | 2016-04-20 | 1 | -1/+1 | |
| | | | | | | | | | | Sorry, it was hard to retrieve the original author of the patch in this issue with a long history and many authors. | |||||
* | | Additional grammar fix | Martin Panter | 2016-04-19 | 1 | -1/+1 | |
| | | ||||||
* | | Merge doc and comment fixes from 3.5 | Martin Panter | 2016-04-19 | 11 | -15/+15 | |
|\ \ | |/ | ||||||
| * | Fix spelling (inital), grammar (may translates) in documentation, comments | Martin Panter | 2016-04-19 | 11 | -15/+15 | |
| | | ||||||
* | | Null merge 3.5 (changes already applied to test_gdb) | Victor Stinner | 2016-04-19 | 0 | -0/+0 | |
|\ \ | |/ | ||||||
| * | Backport test_gdb fix for s390x buildbots | Victor Stinner | 2016-04-19 | 1 | -17/+7 | |
| | | ||||||
* | | Optimize func(*tuple) function call | Victor Stinner | 2016-04-19 | 1 | -0/+4 | |
| | | | | | | | | | | | | | | Issue #26802: Optimize function calls only using unpacking like "func(*tuple)" (no other positional argument, no keyword): avoid copying the tuple. Patch written by Joe Jevnik. | |||||
* | | Merge with 3.5 | Paul Moore | 2016-04-19 | 0 | -0/+0 | |
|\ \ | |/ | ||||||
| * | Mention types.SimpleNamespace in collections.namedtuple doc | Paul Moore | 2016-04-19 | 1 | -0/+5 | |
| | | | | | | | | Issue #26805. | |||||
* | | Issue #26802: Optimized calling a function with *args only positional arguments. | Serhiy Storchaka | 2016-04-19 | 1 | -0/+15 | |
| | | | | | | | | Patch by Joe Jevnik. | |||||
* | | Merge 3.5: issue #26801 | Victor Stinner | 2016-04-19 | 4 | -1/+8 | |
|\ \ | |/ | ||||||
| * | Fix shutil.get_terminal_size() error handling | Victor Stinner | 2016-04-19 | 4 | -1/+8 | |
| | | | | | | | | | | | | | | | | 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: Trivial typo | Jesus Cea | 2016-04-19 | 1 | -1/+1 | |
|\ \ | |/ | ||||||
| * | Trivial typo | Jesus Cea | 2016-04-19 | 1 | -1/+1 | |
| | | ||||||
* | | Mention types.SimpleNamespace in collections.namedtuple doc | Paul Moore | 2016-04-19 | 1 | -0/+5 | |
| | | | | | | | | Issue #26805. | |||||
* | | Merge with 3.5 | Zachary Ware | 2016-04-19 | 1 | -280/+304 | |
|\ \ | |/ | ||||||
| * | Replace assert statements with self.assertXxx() calls | Zachary Ware | 2016-04-19 | 1 | -280/+304 | |
| | | | | | | | | Sync with upstream, see github.com/python/typing/pull/205 | |||||
* | | Don't define _PyMem_PymallocEnabled() if pymalloc is disabled | Victor Stinner | 2016-04-19 | 1 | -1/+1 | |
| | | | | | | | | Isse #26516. | |||||
* | | Merge 3.5: Issue #21668 | Victor Stinner | 2016-04-19 | 2 | -9/+25 | |
|\ \ | |/ | ||||||
| * | setup.py: add missing libm dependency | Victor Stinner | 2016-04-19 | 2 | -9/+25 | |
| | | | | | | | | | | Issue #21668: Link audioop, _datetime, _ctypes_test modules to libm, except on Mac OS X. Patch written by Xavier de Gaye. | |||||
* | | Issue #24838: Merge test_tarfile.py fix from 3.5. | Lars Gustäbel | 2016-04-19 | 1 | -2/+2 | |
|\ \ | |/ | ||||||
| * | Issue #24838: Fix test_tarfile.py for non-utf8 filesystem encodings. | Lars Gustäbel | 2016-04-19 | 1 | -2/+2 | |
| | | ||||||
* | | Issue #24838: Merge tarfile fix from 3.5. | Lars Gustäbel | 2016-04-19 | 3 | -19/+100 | |
|\ \ | |/ | ||||||
| * | Issue #24838: tarfile's ustar and gnu formats now correctly calculate name and | Lars Gustäbel | 2016-04-19 | 3 | -19/+100 | |
| | | | | | | | | link field limits for multibyte character encodings like utf-8. | |||||
* | | Issue #26615: Add missing __qualname__ entry to functools.update_wrapper() docs | Berker Peksag | 2016-04-18 | 1 | -4/+4 | |
|\ \ | |/ | | | | | Patch by Xiang Zhang. | |||||
| * | Issue #26615: Add missing __qualname__ entry to functools.update_wrapper() docs | Berker Peksag | 2016-04-18 | 1 | -4/+4 | |
| | | | | | | | | Patch by Xiang Zhang. | |||||
* | | typing.py: merge 3.5->3.6 (Tuple/ellipsis/equality). | Guido van Rossum | 2016-04-18 | 2 | -1/+8 | |
|\ \ | |/ | ||||||
| * | typing.py: Consider ellipsis in TupleMeta.__eq__. By Kalle Tuure. ↵ | Guido van Rossum | 2016-04-18 | 2 | -1/+8 | |
| | | | | | | | | github.com/python/typing/pull/201. | |||||
* | | Merge 3.5 (test_asyncio) | Victor Stinner | 2016-04-18 | 1 | -1/+3 | |
|\ \ | |/ | ||||||
| * | Fix test_asyncio.test_timeout_disable() | Victor Stinner | 2016-04-18 | 1 | -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.5 | Martin Panter | 2016-04-18 | 3 | -3/+26 | |
|\ \ | |/ | ||||||
| * | Issue #26657: Fix Windows directory traversal vulnerability with http.server | Martin Panter | 2016-04-18 | 3 | -3/+26 | |
| | | | | | | | | | | Based on patch by Philipp Hagemeister. This fixes a regression caused by revision f4377699fd47. | |||||
* | | #25987: add versionadded to Reversible. | Georg Brandl | 2016-04-18 | 1 | -0/+2 | |
| | | ||||||
* | | Fix spelling error | Raymond Hettinger | 2016-04-18 | 1 | -1/+1 | |
| | | ||||||
* | | Sync test_typing.py with upstream git repo (typing.py was already synced). ↵ | Guido van Rossum | 2016-04-18 | 1 | -0/+2 | |
|\ \ | |/ | | | | | (3.5->3.6) | |||||
| * | Sync test_typing.py with upstream git repo (typing.py was already synced). | Guido van Rossum | 2016-04-18 | 1 | -0/+20 | |
| | | ||||||
* | | Issue #26745: Removed redundant code in _PyObject_GenericSetAttrWithDict. | Serhiy Storchaka | 2016-04-17 | 1 | -30/+21 | |
| | | | | | | | | Based on patch by Xiang Zhang. | |||||
* | | Avoid fcntl() if possible in set_inheritable() | Victor Stinner | 2016-04-17 | 1 | -5/+13 | |
| | | | | | | | | | | | | Issue #26770: set_inheritable() avoids calling fcntl() twice if the FD_CLOEXEC is already set/cleared. This change only impacts platforms using the fcntl() implementation of set_inheritable() (not Linux nor Windows). | |||||
* | | Issue #26778: Fixed "a/an/and" typos in code comment, documentation and error | Serhiy Storchaka | 2016-04-17 | 68 | -92/+93 | |
|\ \ | |/ | | | | | messages. | |||||
| * | Issue #26778: Fixed "a/an/and" typos in code comment and documentation. | Serhiy Storchaka | 2016-04-17 | 64 | -87/+88 | |
| | | ||||||
* | | Automated merge with ssh://hg.python.org/cpython | Steven D'Aprano | 2016-04-17 | 2 | -86/+39 | |
|\ \ | ||||||
| * | | Shorten secrets module docstring, add function docstrings. | Steven D'Aprano | 2016-04-17 | 1 | -76/+30 | |
| | | |