COMMITS
/ Objects/fileobject.c April 29, 2018
S
bpo-33012: Fix invalid function cast warnings with gcc 8 for METH_NOARGS. (GH-6030)
Siddhesh Poyarekar committed
February 16, 2017
I
bpo-29548: Fix some inefficient call API usage (GH-97)
INADA Naoki committed
January 23, 2017
S
Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE wherever
Serhiy Storchaka committed
December 5, 2016
V
Issue #28858: Remove _PyObject_CallArg1() macro
Victor Stinner committed
November 20, 2016
S
Added the const qualifier to char* variables that refer to readonly internal
Serhiy Storchaka committed
August 22, 2016
V
Rename _PyObject_FastCall() to _PyObject_FastCallDict()
Victor Stinner committed
August 19, 2016
V
PyFile_WriteObject() now uses fast call
Victor Stinner committed
September 30, 2015
V
(Merge 3.4) Issue #25182: Fix compilation on Windows
Victor Stinner committed
V
Issue #25182: Fix compilation on Windows
Victor Stinner committed
S
Issue #25182: The stdprinter (used as sys.stderr before the io module is
Serhiy Storchaka committed
S
Issue #25182: The stdprinter (used as sys.stderr before the io module is
Serhiy Storchaka committed
March 24, 2015
V
stdprinter_write(): mention the encoding
Victor Stinner committed
March 19, 2015
V
Issue #23708: Add _Py_read() and _Py_write() functions to factorize code handle
Victor Stinner committed
October 19, 2013
S
Issue #1772673: The type of `char*` arguments now changed to `const char*`.
Serhiy Storchaka committed
August 27, 2013
S
Issue #18783: Removed existing mentions of Python long type in docstrings,
Serhiy Storchaka committed
S
Issue #18783: Removed existing mentions of Python long type in docstrings,
Serhiy Storchaka committed
June 24, 2013
V
If MS_WIN64 is defined, MS_WINDOWS is also defined: #ifdef can be simplified.
Victor Stinner committed
January 19, 2013
S
Issue #15989: Fix several occurrences of integer overflow
Serhiy Storchaka committed
S
Issue #15989: Fix several occurrences of integer overflow
Serhiy Storchaka committed
January 14, 2013
S
Issue #15989: Fix several occurrences of integer overflow
Serhiy Storchaka committed
October 14, 2011
M
Rename _Py_identifier to _Py_IDENTIFIER.
Martin v. Löwis committed
October 10, 2011
M
Use identifier API for PyObject_GetAttrString.
Martin v. Löwis committed
October 9, 2011
M
Add API for static strings, primarily good for identifiers.
Martin v. Löwis committed
September 28, 2011
M
Implement PEP 393.
Martin v. Löwis committed
February 22, 2011
B
Issue #8914: fix various warnings from the Clang static analyzer v254.
Brett Cannon committed
January 4, 2011
V
Issue #9015, #9611: stdprinter.write() clamps the length to 2^31-1 on Windows
Victor Stinner committed
August 13, 2010
V
Issue #9425: PyFile_FromFd() ignores the name argument
Victor Stinner committed
May 9, 2010
A
Recorded merge of revisions 81029 via svnmerge from
Antoine Pitrou committed
April 30, 2010
V
PyFile_FromFd() uses PyUnicode_DecodeFSDefault() instead of
Victor Stinner committed
February 2, 2009
M
Issue #1717: rename tp_compare to tp_reserved. I'll change the
Mark Dickinson committed
June 13, 2008
M
Make stdprinter_write static.
Martin v. Löwis committed
May 26, 2008
C
Renamed PyString to PyBytes
Christian Heimes committed
December 3, 2007
G
Add an errors parameter to open() and TextIOWrapper() to specify error handling.
Guido van Rossum committed
December 2, 2007
C
Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h
Christian Heimes committed
November 13, 2007
C
Fix for #1415 pythonw.exe fails because std streams a missing
Christian Heimes committed
November 12, 2007
C
Let's do as Guido says and return None instead of -1
Christian Heimes committed
C
Stop Python code from instantiating a new stdprinter with sys.stderr.__class__()
Christian Heimes committed
November 6, 2007
G
Merging the py3k-pep3137 branch back into the py3k branch.
Guido van Rossum committed
October 30, 2007
G
Minor correction to the stdprinter object.
Guido van Rossum committed
G
Patch 1352 (continued in issue 1329) by Christian Heimes.
Guido van Rossum committed
G
Patch 1329 (partial) by Christian Heimes.
Guido van Rossum committed
October 23, 2007
G
Remove redundant PyInt/PyLong checks.
Georg Brandl committed
October 22, 2007
G
Issue 1267, continued.
Guido van Rossum committed
October 19, 2007
G
Patch 1267 by Christian Heimes.
Guido van Rossum committed
October 9, 2007
G
PyFile_WriteObject() should use PyObject_Repr(), not _ReprStr8().
Guido van Rossum committed
August 12, 2007
N
Kill execfile(), use exec() instead
Neal Norwitz committed
August 9, 2007
G
In PyFile_WriteString(), call PyUnicode_FromString() instead of
Guido van Rossum committed
July 11, 2007
G
Make test_descr.py pass. Had to disable a few tests, remove references
Guido van Rossum committed
June 12, 2007
G
Rip out the file object's implementation.
Guido van Rossum committed