- 9975cc5 bpo-41985: Add _PyLong_FileDescriptor_Converter and AC converter for "fildes". (GH-22620) by Serhiy Storchaka · 4 years, 1 month ago
- e5014be bpo-40268: Remove a few pycore_pystate.h includes (GH-19510) by Victor Stinner · 4 years, 7 months ago
- 8f87eef bpo-39943: Add the const qualifier to pointers on non-mutable PyBytes data. (GH-19472) by Serhiy Storchaka · 4 years, 7 months ago
- ffd9753 bpo-39245: Switch to public API for Vectorcall (GH-18460) by Petr Viktorin · 4 years, 9 months ago
- a93c51e bpo-39573: Use Py_REFCNT() macro (GH-18388) by Victor Stinner · 4 years, 9 months ago
- 46874c2 bpo-39487: Merge duplicated _Py_IDENTIFIER identifiers in C code (GH-18254) by Hai Shi · 4 years, 9 months ago
- 1f21eaa bpo-15999: Clean up of handling boolean arguments. (GH-15610) by Serhiy Storchaka · 5 years ago
- 41c57b3 bpo-37994: Fix silencing all errors if an attribute lookup fails. (GH-15630) by Serhiy Storchaka · 5 years ago
- 762f93f bpo-37337: Add _PyObject_CallMethodNoArgs() (GH-14267) by Jeroen Demeyer · 5 years ago
- 196a530 bpo-37483: add _PyObject_CallOneArg() function (#14558) by Jeroen Demeyer · 5 years ago
- 530f506 bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (GH-13464) by Jeroen Demeyer · 5 years ago
- b82e17e bpo-36842: Implement PEP 578 (GH-12613) by Steve Dower · 5 years ago
- 8b91eda bpo-36251: Fix format strings used in match_repr() and stdprinter_repr(). (GH-12252) by sth · 6 years ago
- 6d43f6f bpo-35713: Split _Py_InitializeCore into subfunctions (GH-11650) by Victor Stinner · 6 years ago
- 3015fb8 bpo-35214: Add _Py_ prefix to MEMORY_SANITIZER def. (GH-10503) by Gregory P. Smith · 6 years ago
- e6c77d8 Disable getc_unlocked() with MemorySanitizer. (GH-10499) by Gregory P. Smith · 6 years ago
- 55edd0c bpo-33012: Fix invalid function cast warnings with gcc 8 for METH_NOARGS. (GH-6030) by Siddhesh Poyarekar · 7 years ago
- 72dccde bpo-29548: Fix some inefficient call API usage (GH-97) by INADA Naoki · 8 years ago
- 228b12e Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE wherever by Serhiy Storchaka · 8 years ago
- 7bfb42d Issue #28858: Remove _PyObject_CallArg1() macro by Victor Stinner · 8 years ago
- 85b0f5b Added the const qualifier to char* variables that refer to readonly internal by Serhiy Storchaka · 8 years ago
- 559bb6a Rename _PyObject_FastCall() to _PyObject_FastCallDict() by Victor Stinner · 8 years ago
- 9def090 PyFile_WriteObject() now uses fast call by Victor Stinner · 8 years ago
- ae86da9 (Merge 3.4) Issue #25182: Fix compilation on Windows by Victor Stinner · 9 years ago
- 89719e1 Issue #25182: Fix compilation on Windows by Victor Stinner · 9 years ago
- 008fc77 Issue #25182: The stdprinter (used as sys.stderr before the io module is by Serhiy Storchaka · 9 years ago
- a59018c Issue #25182: The stdprinter (used as sys.stderr before the io module is by Serhiy Storchaka · 9 years ago
- 454bd3a stdprinter_write(): mention the encoding by Victor Stinner · 10 years ago
- 66aab0c Issue #23708: Add _Py_read() and _Py_write() functions to factorize code handle by Victor Stinner · 10 years ago
- c679227 Issue #1772673: The type of `char*` arguments now changed to `const char*`. by Serhiy Storchaka · 11 years ago
- 46e1ce2 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
- 9594942 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
- 14b9b11 If MS_WIN64 is defined, MS_WINDOWS is also defined: #ifdef can be simplified. by Victor Stinner · 11 years ago
- 9101e23 Issue #15989: Fix several occurrences of integer overflow by Serhiy Storchaka · 12 years ago
- 441d30f Issue #15989: Fix several occurrences of integer overflow by Serhiy Storchaka · 12 years ago
- 7898043 Issue #15989: Fix several occurrences of integer overflow by Serhiy Storchaka · 12 years ago
- bd928fe Rename _Py_identifier to _Py_IDENTIFIER. by Martin v. Löwis · 13 years ago
- 1ee1b6f Use identifier API for PyObject_GetAttrString. by Martin v. Löwis · 13 years ago
- afe55bb Add API for static strings, primarily good for identifiers. by Martin v. Löwis · 13 years ago
- d63a3b8 Implement PEP 393. by Martin v. Löwis · 13 years ago
- b94767f Issue #8914: fix various warnings from the Clang static analyzer v254. by Brett Cannon · 14 years ago
- dc55540 Issue #9015, #9611: stdprinter.write() clamps the length to 2^31-1 on Windows by Victor Stinner · 14 years ago
- 3603cc5 Issue #9425: PyFile_FromFd() ignores the name argument by Victor Stinner · 14 years ago
- f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
- 0964ee1 PyFile_FromFd() uses PyUnicode_DecodeFSDefault() instead of by Victor Stinner · 15 years ago
- e94c679 Issue #1717: rename tp_compare to tp_reserved. I'll change the by Mark Dickinson · 16 years ago
- ff649b4 Make stdprinter_write static. by Martin v. Löwis · 16 years ago
- 72b710a Renamed PyString to PyBytes by Christian Heimes · 16 years ago
- e7fc50f Add an errors parameter to open() and TextIOWrapper() to specify error handling. by Guido van Rossum · 17 years ago
- 217cfd1 Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h by Christian Heimes · 17 years ago
- 58cb1b8 Fix for #1415 pythonw.exe fails because std streams a missing by Christian Heimes · 17 years ago
- 1607278 Let's do as Guido says and return None instead of -1 by Christian Heimes · 17 years ago
- af935e3 Stop Python code from instantiating a new stdprinter with sys.stderr.__class__() by Christian Heimes · 17 years ago
- e018b30 Bug #1415 by Christian Heimes · 17 years ago
- 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
- c6ecfcd Minor correction to the stdprinter object. by Guido van Rossum · 17 years ago
- 826d897 Patch 1352 (continued in issue 1329) by Christian Heimes. by Guido van Rossum · 17 years ago
- 2dced8b Patch 1329 (partial) by Christian Heimes. by Guido van Rossum · 17 years ago
- b6538a8 Remove redundant PyInt/PyLong checks. by Georg Brandl · 17 years ago
- 40d20bc Issue 1267, continued. by Guido van Rossum · 17 years ago
- ce3a72a Patch 1267 by Christian Heimes. by Guido van Rossum · 17 years ago
- e518bf3 PyFile_WriteObject() should use PyObject_Repr(), not _ReprStr8(). by Guido van Rossum · 17 years ago
- 0168802 Kill execfile(), use exec() instead by Neal Norwitz · 17 years ago
- 1101980 In PyFile_WriteString(), call PyUnicode_FromString() instead of by Guido van Rossum · 17 years ago
- 55b4a7b Make test_descr.py pass. Had to disable a few tests, remove references by Guido van Rossum · 17 years ago
- da5b8f2 Rip out the file object's implementation. by Guido van Rossum · 17 years ago
- 5397039 Minimal changes to make the "freeze" tool work again. by Guido van Rossum · 17 years ago
- 6f376c4 Enable new I/O. Disable creation of old files. by Guido van Rossum · 17 years ago
- 1ab8330 Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror by Walter Dörwald · 17 years ago
- a8add0e Merged revisions 55270-55324 via svnmerge from by Guido van Rossum · 17 years ago
- 8d30cc0 Get rid of all #ifdef Py_USING_UNICODE (it is always present now). by Guido van Rossum · 18 years ago
- d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 18 years ago
- 79139b2 Kill off softspace completely (except in formatter.py which seems to have by Guido van Rossum · 18 years ago
- b213704 Merged revisions 53451-53537 via svnmerge from by Thomas Wouters · 18 years ago
- ddefaf3 Merged the int/long unification branch, by very crude means (sorry Thomas!). by Guido van Rossum · 18 years ago
- 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
- 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
- 3cf5b1e Get rid of most of the flags (in tp_flags) that keep track of various by Guido van Rossum · 18 years ago
- 73e5a5b Merge the rest of the trunk. by Thomas Wouters · 18 years ago
- 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 18 years ago
- d624f18 Added much functionality to the bytes type. by Guido van Rossum · 19 years ago
- 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 19 years ago
- 7096760 Get rid of xreadlines() (methods). by Neal Norwitz · 19 years ago
- f669436 Um, I thought I'd already checked this in. by Guido van Rossum · 19 years ago
- 1a5e21e Updates to the with-statement: by Guido van Rossum · 19 years ago
- 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 19 years ago
- 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
- c45251a SF patch #1397960: When mixing file-iteration and by Thomas Wouters · 19 years ago
- 76dc081 strlen() returns a size_t, get rid of 64-bit warning by Neal Norwitz · 19 years ago
- a716eab Revert r41662 and the part of 41552 that originally caused the problem by Neal Norwitz · 19 years ago
- e237d50 Add a workaround for file.ftell() to raise IOError for ttys. by Hye-Shik Chang · 19 years ago
- af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
- bbf12ba Disallow opening files with modes 'aU' or 'wU' as specified by PEP by Skip Montanaro · 19 years ago
- f8e74b1 If close() fails in file_dealloc, then print an error message to by Peter Astrand · 20 years ago
- 51ffac6 dump HAVE_FOPENRF stuff - obsolete by Skip Montanaro · 20 years ago
- cb87bc8 Add weakref support to array.array and file objects. by Raymond Hettinger · 20 years ago
- 4e10ed3 If a file is opened with an explicit buffer size >= 1, repeated by Andrew MacIntyre · 21 years ago
- abce8a6 Changed file.name to be the object passed as the 'name' argument to file() by Nicholas Bastin · 21 years ago
- 086a0f7 PyFile_WriteObject(): some of the local variables are only used when by Fred Drake · 21 years ago
- db60805 Remove support for --without-universal-newlines (see PEP 11). by Skip Montanaro · 21 years ago