- 24 Apr, 2016 4 commits
-
-
Berker Peksag authored
-
Berker Peksag authored
-
Berker Peksag authored
Patch by Corey Brune.
-
Berker Peksag authored
Patch by Corey Brune.
-
- 23 Apr, 2016 15 commits
-
-
Berker Peksag authored
All signal.SIG* constants may not be defined on Windows so a call like signal.signal(signal.SIGPIPE, lambda signum, frame: sys.exit(1)) will raise an AttributeError.
-
Berker Peksag authored
All signal.SIG* constants may not be defined on Windows so a call like signal.signal(signal.SIGPIPE, lambda signum, frame: sys.exit(1)) will raise an AttributeError.
-
Berker Peksag authored
It was renamed to 'license' in 178d19cff163. Patch by Augustin Laville.
-
Berker Peksag authored
* Explain how 'error_message_format' is used by 'send_error' method * Mention that 'responses' is used by 'send_response_only' and 'send_error' methods * Replace 'class variables' with 'attributes' Initial patch by Anastasia Filatova.
-
Berker Peksag authored
* Explain how 'error_message_format' is used by 'send_error' method * Mention that 'responses' is used by 'send_response_only' and 'send_error' methods * Replace 'class variables' with 'attributes' Initial patch by Anastasia Filatova.
-
Serhiy Storchaka authored
silently ignore keyword arguments.
-
Serhiy Storchaka authored
silently ignore keyword arguments.
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Serhiy Storchaka authored
Patch by Xiang Zhang.
-
Serhiy Storchaka authored
Patch by Xiang Zhang.
-
Senthil Kumaran authored
Document no_proxy environment variable in python 3.x #issue23806
-
Senthil Kumaran authored
-
Martin Panter authored
-
Martin Panter authored
Patch by Xavier de Gaye.
-
- 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 10 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
-