An error occurred fetching the project authors.
- 19 Aug, 2016 1 commit
-
-
Victor Stinner authored
Issue #27128.
-
- 26 May, 2016 1 commit
-
-
Martin Panter authored
Most fixes to Doc/ and Lib/ directories by Ville Skyttä.
-
- 28 Feb, 2016 1 commit
-
-
Martin Panter authored
-
- 25 Dec, 2015 2 commits
-
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
- 06 Sep, 2015 1 commit
-
-
Serhiy Storchaka authored
It is very unlikely that they can occur in real code for now.
-
- 04 Sep, 2015 1 commit
-
-
Victor Stinner authored
Issue #24891: Fix a race condition at Python startup if the file descriptor of stdin (0), stdout (1) or stderr (2) is closed while Python is creating sys.stdin, sys.stdout and sys.stderr objects. These attributes are now set to None if the creation of the object failed, instead of raising an OSError exception. Initial patch written by Marco Paolini.
-
- 27 Jul, 2015 1 commit
-
-
Berker Peksag authored
Patch by Louis Dassy.
-
- 03 May, 2015 1 commit
-
-
Eric Snow authored
-
- 13 Apr, 2015 1 commit
-
-
Brett Cannon authored
The concept of .pyo files no longer exists. Now .pyc files have an optional `opt-` tag which specifies if any extra optimizations beyond the peepholer were applied.
-
- 25 Mar, 2015 1 commit
-
-
Victor Stinner authored
Flushing sys.stdout and sys.stderr in Py_FatalError() can call again Py_FatalError(). Add a reentrant flag to detect this case and just abort at the second call.
-
- 24 Mar, 2015 2 commits
-
-
Victor Stinner authored
It should help to see exceptions when stderr if buffered: PyErr_Display() calls sys.stderr.write(), it doesn't write into stderr file descriptor directly.
-
Victor Stinner authored
* Display the current Python stack if an exception was raised but the exception has no traceback * Disable faulthandler if an exception was raised (before it was only disabled if no exception was raised) * To display the current Python stack, call PyGILState_GetThisThreadState() which works even if the GIL was released
-
- 18 Mar, 2015 1 commit
-
-
Victor Stinner authored
Detect also earlier PyMarshal_Read*() errors in zipimport.
-
- 22 Nov, 2014 2 commits
-
-
Zachary Ware authored
-
Steve Dower authored
-
- 20 Nov, 2014 1 commit
-
-
Nick Coghlan authored
- interpreter startup and shutdown code moved to a new pylifecycle.c module - Py_OptimizeFlag moved into the new module with the other global flags
-
- 05 Nov, 2014 2 commits
-
-
Victor Stinner authored
MAXPATHLEN is now preferred.
-
Victor Stinner authored
now preferred. Patch written by Jeffrey Armstrong.
-
- 29 Aug, 2014 1 commit
-
-
Victor Stinner authored
Other changes: * The whole _PyTime API is private (not defined if Py_LIMITED_API is set) * _PyTime_gettimeofday_info() also returns -1 on error * Simplify PyTime_gettimeofday(): only use clock_gettime(CLOCK_REALTIME) or gettimeofday() on UNIX. Don't fallback to ftime() or time() anymore.
-
- 15 Aug, 2014 1 commit
-
-
Victor Stinner authored
warnings in the Python/ subdirectory.
-
- 11 May, 2014 1 commit
-
-
Antoine Pitrou authored
-
- 17 Apr, 2014 1 commit
-
-
doko@ubuntu.com authored
- Issue #21274: Define PATH_MAX for GNU/Hurd in Python/pythonrun.c. - Issue #21276: posixmodule: Don't define USE_XATTRS on KFreeBSD and the Hurd. - Issue #21275: Fix a socket test on KFreeBSD.
-
- 18 Mar, 2014 2 commits
-
-
Victor Stinner authored
to get LC_CTYPE constant on Windows.
-
Victor Stinner authored
:py:data:`sys.stdin` and :py:data:`sys.stdout` are now using the ``surrogateescape`` error handler, instead of the ``strict`` error handler.
-
- 13 Feb, 2014 2 commits
-
-
Victor Stinner authored
regression: don't clear anymore the state of Python threads early during the Python shutdown.
-
Victor Stinner authored
regression: don't clear anymore the state of Python threads early during the Python shutdown.
-
- 09 Feb, 2014 1 commit
-
-
Nick Coghlan authored
-
- 21 Jan, 2014 1 commit
-
-
Serhiy Storchaka authored
cases when multibyte characters are in line (before "^"). This still not works correctly with wide East Asian characters.
-
- 09 Dec, 2013 1 commit
-
-
Victor Stinner authored
-
- 01 Dec, 2013 1 commit
-
-
Victor Stinner authored
tracemalloc in objects destructor Replace atexit handler with an harcoded C function _PyTraceMalloc_Fini().
-
- 23 Nov, 2013 1 commit
-
-
Victor Stinner authored
-
- 20 Nov, 2013 1 commit
-
-
Christian Heimes authored
Python now uses SipHash24 on all major platforms.
-
- 15 Nov, 2013 1 commit
-
-
Victor Stinner authored
the env_home buffer, not PATH_MAX+1. env_home is declared using MAXPATHLEN+1, and PATH_MAX is not declared on IRIX.
-
- 12 Nov, 2013 3 commits
-
-
Victor Stinner authored
Patch written by Andrei Dorian Duma.
-
Victor Stinner authored
-
Victor Stinner authored
shutdown to call objects destructors. So "unclosed file" resource warnings are now corretly emitted for daemon threads.
-
- 07 Nov, 2013 2 commits
-
-
Victor Stinner authored
are used. Move also _Py_IDENTIFIER() defintions to the top in modified files to remove identifiers duplicated in the same file.
-
Victor Stinner authored
Use aslo PyUnicode_FromFormat() to format the line so only one call to PyFile_WriteObject() is needed. tb_displayline() of Python/traceback.c has similar implementation.
-
- 06 Nov, 2013 1 commit
-
-
Victor Stinner authored
_PyUnicode_CompareWithId() is faster than PyUnicode_CompareWithASCIIString() when both strings are equal and interned. Add also _PyId_builtins identifier for "builtins" common string.
-