aboutsummaryrefslogtreecommitdiff
path: root/Objects/fileobject.c
AgeCommit message (Expand)Author
2021-10-14bpo-45479: Futher simplify Py_UniversalNewlineFgets. (GH-28967)Benjamin Peterson
2021-10-14closes bpo-45479: Degunkify Py_UniversalNewlineFgets. (GH-28965)Benjamin Peterson
2021-10-12bpo-45439: Move _PyObject_CallNoArgs() to pycore_call.h (GH-28895)Victor Stinner
2021-10-12bpo-45439: Rename _PyObject_CallNoArg() to _PyObject_CallNoArgs() (GH-28891)Victor Stinner
2021-04-30bpo-43916: PyStdPrinter_Type uses Py_TPFLAGS_DISALLOW_INSTANTIATION (GH-25749)Victor Stinner
2020-10-09bpo-41985: Add _PyLong_FileDescriptor_Converter and AC converter for "fildes"...Serhiy Storchaka
2020-04-14bpo-40268: Remove a few pycore_pystate.h includes (GH-19510)Victor Stinner
2020-04-12bpo-39943: Add the const qualifier to pointers on non-mutable PyBytes data. (...Serhiy Storchaka
2020-02-11bpo-39245: Switch to public API for Vectorcall (GH-18460)Petr Viktorin
2020-02-07bpo-39573: Use Py_REFCNT() macro (GH-18388)Victor Stinner
2020-01-30bpo-39487: Merge duplicated _Py_IDENTIFIER identifiers in C code (GH-18254)Hai Shi
2019-09-01bpo-15999: Clean up of handling boolean arguments. (GH-15610)Serhiy Storchaka
2019-09-01bpo-37994: Fix silencing all errors if an attribute lookup fails. (GH-15630)Serhiy Storchaka
2019-07-08bpo-37337: Add _PyObject_CallMethodNoArgs() (GH-14267)Jeroen Demeyer
2019-07-04bpo-37483: add _PyObject_CallOneArg() function (#14558)Jeroen Demeyer
2019-05-30bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G...Jeroen Demeyer
2019-05-23bpo-36842: Implement PEP 578 (GH-12613)Steve Dower
2019-03-10bpo-36251: Fix format strings used in match_repr() and stdprinter_repr(). (GH...sth
2019-01-22bpo-35713: Split _Py_InitializeCore into subfunctions (GH-11650)Victor Stinner
2018-11-12bpo-35214: Add _Py_ prefix to MEMORY_SANITIZER def. (GH-10503)Gregory P. Smith
2018-11-12Disable getc_unlocked() with MemorySanitizer. (GH-10499)Gregory P. Smith
2018-04-29bpo-33012: Fix invalid function cast warnings with gcc 8 for METH_NOARGS. (GH...Siddhesh Poyarekar
2017-02-16bpo-29548: Fix some inefficient call API usage (GH-97)INADA Naoki
2017-01-23Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE whereverSerhiy Storchaka
2016-12-05Issue #28858: Remove _PyObject_CallArg1() macroVictor Stinner
2016-11-20Added the const qualifier to char* variables that refer to readonly internalSerhiy Storchaka
2016-08-22Rename _PyObject_FastCall() to _PyObject_FastCallDict()Victor Stinner
2016-08-20PyFile_WriteObject() now uses fast callVictor Stinner
2015-09-30(Merge 3.4) Issue #25182: Fix compilation on WindowsVictor Stinner
2015-09-30Issue #25182: Fix compilation on WindowsVictor Stinner
2015-09-30Issue #25182: The stdprinter (used as sys.stderr before the io module isSerhiy Storchaka
2015-09-30Issue #25182: The stdprinter (used as sys.stderr before the io module isSerhiy Storchaka
2015-03-24stdprinter_write(): mention the encodingVictor Stinner
2015-03-19Issue #23708: Add _Py_read() and _Py_write() functions to factorize code handleVictor Stinner
2013-10-19Issue #1772673: The type of `char*` arguments now changed to `const char*`.Serhiy Storchaka
2013-08-27Issue #18783: Removed existing mentions of Python long type in docstrings,Serhiy Storchaka
2013-08-27Issue #18783: Removed existing mentions of Python long type in docstrings,Serhiy Storchaka
2013-06-25If MS_WIN64 is defined, MS_WINDOWS is also defined: #ifdef can be simplified.Victor Stinner
2013-01-19Issue #15989: Fix several occurrences of integer overflowSerhiy Storchaka
2013-01-19Issue #15989: Fix several occurrences of integer overflowSerhiy Storchaka
2013-01-15Issue #15989: Fix several occurrences of integer overflowSerhiy Storchaka
2011-10-14Rename _Py_identifier to _Py_IDENTIFIER.Martin v. Löwis
2011-10-10Use identifier API for PyObject_GetAttrString.Martin v. Löwis
2011-10-09Add API for static strings, primarily good for identifiers.Martin v. Löwis
2011-09-28Implement PEP 393.Martin v. Löwis
2011-02-22Issue #8914: fix various warnings from the Clang static analyzer v254.Brett Cannon
2011-01-04Issue #9015, #9611: stdprinter.write() clamps the length to 2^31-1 on WindowsVictor Stinner
2010-08-13Issue #9425: PyFile_FromFd() ignores the name argumentVictor Stinner
2010-05-09Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou
2010-04-30PyFile_FromFd() uses PyUnicode_DecodeFSDefault() instead ofVictor Stinner