An error occurred fetching the project authors.
- 12 Nov, 2017 1 commit
-
-
xdegaye authored
-
- 11 Nov, 2017 1 commit
-
-
Serhiy Storchaka authored
-
- 23 Oct, 2017 1 commit
-
-
xdegaye authored
-
- 17 Oct, 2017 1 commit
-
-
Zane Bitter authored
-
- 14 Sep, 2017 2 commits
- 12 Sep, 2017 1 commit
-
-
Eric Snow authored
* Drop warnoptions from PyInterpreterState. * Drop xoptions from PyInterpreterState. * Don't set warnoptions and _xoptions again. * Decref after adding to sys.__dict__. * Drop an unused macro. * Check sys.xoptions *before* we delete it.
-
- 08 Sep, 2017 1 commit
-
-
Eric Snow authored
* group the (stateful) runtime globals into various topical structs * consolidate the topical structs under a single top-level _PyRuntimeState struct * add a check-c-globals.py script that helps identify runtime globals Other globals are excluded (see globals.txt and check-c-globals.py).
-
- 24 May, 2017 1 commit
-
-
Eric Snow authored
(patch by Nick Coghlan)
-
- 15 Feb, 2017 1 commit
-
-
Yen Chi Hsuan authored
bltinmodule.c: Added in b744ba1d and no longer necessary since d64e8a75 posixmodule.c: Added in d1cd4d41 and no longer necessary since efb00c0c pythonrun.c: Added in 73d538b9 and no longer necessary since d6009517 sysmodule.c: Added in 5467d4c0 and no longer necessary since a2c17c58
-
- 11 Dec, 2016 1 commit
-
-
Martin Panter authored
Based on patch by Michael Layzell.
-
- 20 Nov, 2016 2 commits
-
-
Serhiy Storchaka authored
UTF-8 represenatation of Unicode objects.
-
Serhiy Storchaka authored
with PyUnicode_AsUTF8 and PyUnicode_AsUTF8AndSize.
-
- 16 Nov, 2016 1 commit
-
-
Serhiy Storchaka authored
The latter function is more readable, faster and doesn't raise exceptions. Based on patch by Xiang Zhang.
-
- 06 Sep, 2016 1 commit
-
-
Victor Stinner authored
Directly pass NULL rather than an empty string.
-
- 22 Aug, 2016 1 commit
-
-
Victor Stinner authored
Issue #27809: * Rename _PyObject_FastCall() function to _PyObject_FastCallDict() * Add _PyObject_FastCall(), _PyObject_CallNoArg() and _PyObject_CallArg1() macros calling _PyObject_FastCallDict()
-
- 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 1 commit
-
-
Victor Stinner authored
to get LC_CTYPE constant on Windows.
-