- 22 Apr, 2016 2 commits
-
-
Victor Stinner authored
-
Victor Stinner authored
Issue #26249: PyMem_Malloc() allocator family now uses the pymalloc allocator rather than system malloc(). Applications calling PyMem_Malloc() without holding the GIL can now crash: use PYTHONMALLOC=debug environment variable to validate the usage of memory allocators in your application.
-
- 21 Apr, 2016 1 commit
-
-
Senthil Kumaran authored
-
- 20 Apr, 2016 8 commits
-
-
Victor Stinner authored
-
Victor Stinner authored
The function was only called in _sizeof_void_p()
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
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.
-
Victor Stinner authored
-
Victor Stinner authored
Sorry, it was hard to retrieve the original author of the patch in this issue with a long history and many authors.
-
- 19 Apr, 2016 23 commits
-
-
Martin Panter authored
-
Martin Panter authored
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
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.
-
Paul Moore authored
-
Serhiy Storchaka authored
Patch by Joe Jevnik.
-
Victor Stinner authored
-
Victor Stinner authored
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.
-
Jesus Cea authored
-
Jesus Cea authored
-
Paul Moore authored
Issue #26805.
-
Paul Moore authored
Issue #26805.
-
Zachary Ware authored
-
Zachary Ware authored
Sync with upstream, see github.com/python/typing/pull/205
-
Victor Stinner authored
Isse #26516.
-
Victor Stinner authored
-
Victor Stinner authored
Issue #21668: Link audioop, _datetime, _ctypes_test modules to libm, except on Mac OS X. Patch written by Xavier de Gaye.
-
Lars Gustäbel authored
-
Lars Gustäbel authored
-
Lars Gustäbel authored
-
Lars Gustäbel authored
link field limits for multibyte character encodings like utf-8.
-
Martin Panter authored
-
- 18 Apr, 2016 6 commits
-
-
Berker Peksag authored
Patch by Xiang Zhang.
-
Berker Peksag authored
Patch by Xiang Zhang.
-
Guido van Rossum authored
-
Guido van Rossum authored
typing.py: Consider ellipsis in TupleMeta.__eq__. By Kalle Tuure. github.com/python/typing/pull/201.
-
Victor Stinner authored
-
Victor Stinner authored
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".
-