summaryrefslogtreecommitdiff
path: root/Python/sysmodule.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE whereverSerhiy Storchaka2017-01-231-20/+10
* Use _PyObject_CallMethodIdObjArgs()Victor Stinner2016-12-091-1/+1
* Use _PyObject_CallNoArg()Victor Stinner2016-12-061-1/+1
* Issue #28858: Remove _PyObject_CallArg1() macroVictor Stinner2016-12-051-1/+1
* Backed out changeset b9c9691c72c5Victor Stinner2016-12-041-1/+1
* Add sys.getandroidapilevel()Victor Stinner2016-12-021-0/+18
* Replace PyObject_CallFunctionObjArgs() with fastcallVictor Stinner2016-12-011-1/+1
* Remove CALL_PROFILE special buildVictor Stinner2016-11-281-1/+14
* Added the const qualifier to char* variables that refer to readonly internalSerhiy Storchaka2016-11-201-2/+2
* Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSizeSerhiy Storchaka2016-11-201-2/+2
|\
| * Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSizeSerhiy Storchaka2016-11-201-2/+2
* | Use PyThreadState_GET() in performance critical codeVictor Stinner2016-11-111-1/+2
|/
* Issue #28616: merge from 3.5Ned Deily2016-11-041-1/+1
|\
| * Issue #28616: Correct help for sys.version_info releaselevel component.Ned Deily2016-11-041-1/+1
| * Issue #27932: Prevent memory leak in win32_ver().Steve Dower2016-09-171-0/+37
* | Issue #27932: Prevent memory leak in win32_ver().Steve Dower2016-09-171-4/+42
* | remove ceval timestamp supportBenjamin Peterson2016-09-091-30/+0
* | Issue #28003: Fix a compiler warningYury Selivanov2016-09-091-1/+1
* | Issue #28003: Implement PEP 525 -- Asynchronous Generators.Yury Selivanov2016-09-081-0/+119
* | Issue #27781: Change file system encoding on Windows to UTF-8 (PEP 529)Steve Dower2016-09-081-2/+48
* | Issue #27355: Removed support for Windows CE. It was never finished,Larry Hastings2016-09-051-5/+3
* | Rename _PyObject_FastCall() to _PyObject_FastCallDict()Victor Stinner2016-08-221-2/+2
* | sys_pyfile_write_unicode() now uses fast callVictor Stinner2016-08-201-7/+2
* | call_trampoline() now uses fast callVictor Stinner2016-08-201-19/+10
* | - Issue #23968: Rename the platform directory from plat-$(MACHDEP) todoko2016-06-141-0/+10
* | Issue #17905: Do not guard locale include with HAVE_LANGINFO_H.Stefan Krah2016-04-251-1/+1
* | Issue #22570: Renamed Py_SETREF to Py_XSETREF.Serhiy Storchaka2016-04-061-14/+11
|\ \ | |/ |/|
| * Add PYTHONMALLOC env varVictor Stinner2016-03-141-2/+4
| * Merge 3.5Victor Stinner2016-01-201-12/+7
| |\ |/ /
| * Issue #20440: Cleaning up the code by using Py_SETREF.Serhiy Storchaka2016-01-051-4/+1
| * Issue #25923: Added the const qualifier to static constant arrays.Serhiy Storchaka2015-12-251-2/+4
| * sysmodule.c: reuse Py_STRINGIFY() macroVictor Stinner2015-11-051-6/+2
* | Add _PyThreadState_UncheckedGet()Victor Stinner2016-01-201-1/+1
|/
* sys.setrecursionlimit() now raises RecursionErrorVictor Stinner2015-10-131-3/+26
* Issue 24017: Make PyEval_(Set|Get)CoroutineWrapper privateYury Selivanov2015-06-011-3/+3
* use our normal bracing styleBenjamin Peterson2015-05-121-1/+2
* Issue #24017: Plug ref leak.Yury Selivanov2015-05-121-2/+0
* PEP 0492 -- Coroutines with async and await syntax. Issue #24017.Yury Selivanov2015-05-111-0/+47
* Issue #23752: _Py_fstat() is now responsible to raise the Python exceptionVictor Stinner2015-03-301-1/+1
* Issue #23451: Update pyconfig.h for Windows to require Vista headers and remo...Steve Dower2015-03-021-0/+8
* Issue #23152: Implement _Py_fstat() to support files larger than 2 GB on Wind...Steve Dower2015-02-211-2/+2
* Issue #23181: More "codepoint" -> "code point".Serhiy Storchaka2015-01-181-1/+1
|\
| * Issue #23181: More "codepoint" -> "code point".Serhiy Storchaka2015-01-181-1/+1
* | Issue #22696: Add function :func:`sys.is_finalizing` to know about interprete...Antoine Pitrou2014-12-071-0/+11
* | Issue #22869: Split pythonrun into two modulesNick Coghlan2014-11-201-1/+1
|/
* Issue #22193: Fixed integer overflow error in sys.getsizeof().Serhiy Storchaka2014-11-151-5/+10
* Issue #22193: Added private function _PySys_GetSizeOf() needed to implementSerhiy Storchaka2014-08-141-32/+40
* Issue #21891: remove extraneous semicolon.Ned Deily2014-06-301-1/+1
* Issue #13204: Calling sys.flags.__new__ would crash the interpreter, now it r...Antoine Pitrou2014-04-281-3/+10
* undefine SET_SYS_FROM_STRING_BORROW after its done being used (closes #21089)Benjamin Peterson2014-03-281-0/+1