GitWeb
Get Gentoo!
gentoo.org sites
gentoo.org
Wiki
Bugs
Forums
Packages
Planet
Archives
Sources
Infra Status
Home
Gentoo Repository
Repositories
Projects
Developer Overlays
User Overlays
Data
Websites
index
:
fork/cpython.git
3.6
3.7
3.8
3.9
backport-e35ca41-3.11
gentoo
gentoo-2.7-vanilla
main
master
Gentoo fork of Python
Python project <python@gentoo.org>
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
Modules
/
_io
/
bufferedio.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-37960: Silence only necessary errors in repr() of buffered and text strea...
Serhiy Storchaka
2019-08-29
1
-5
/
+7
*
bpo-37547: add _PyObject_CallMethodOneArg (GH-14685)
Jeroen Demeyer
2019-07-11
1
-5
/
+5
*
bpo-37337: Add _PyObject_CallMethodNoArgs() (GH-14267)
Jeroen Demeyer
2019-07-08
1
-13
/
+13
*
bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G...
Jeroen Demeyer
2019-05-30
1
-10
/
+10
*
bpo-32388: Remove cross-version binary compatibility requirement in tp_flags ...
Antoine Pitrou
2019-05-29
1
-6
/
+5
*
bpo-35081: Add Include/internal/pycore_object.h (GH-10640)
Victor Stinner
2018-11-21
1
-0
/
+1
*
bpo-35081: Rename internal headers (GH-10275)
Victor Stinner
2018-11-12
1
-1
/
+1
*
bpo-35081: Add pycore_ prefix to internal header files (GH-10263)
Victor Stinner
2018-11-01
1
-1
/
+1
*
bpo-33138: Change standard error message for non-pickleable and non-copyable ...
Serhiy Storchaka
2018-10-31
1
-15
/
+0
*
bpo-34287: Do not use second argument of METH_NOARGS functions (GH-8582)
jdemeyer
2018-08-02
1
-21
/
+21
*
bpo-32228: Reset raw_pos after unwinding the raw stream (#4858)
Nitish Chandra
2018-01-28
1
-4
/
+10
*
bpo-32571: Avoid raising unneeded AttributeError and silencing it in C code ...
Serhiy Storchaka
2018-01-25
1
-4
/
+3
*
bpo-31572: Get rid of PyObject_HasAttr() and _PyObject_HasAttrId() in the _io...
Serhiy Storchaka
2018-01-16
1
-18
/
+14
*
bpo-17852: Revert incorrect fix based on misunderstanding of _Py_PyAtExit() s...
Antoine Pitrou
2017-12-13
1
-50
/
+1
*
bpo-31976: Fix race condition when flushing a file is slow. (#4331)
benfogle
2017-11-10
1
-5
/
+9
*
bpo-17852: Maintain a list of BufferedWriter objects. Flush them on exit. (#...
Neil Schemenauer
2017-09-22
1
-1
/
+50
*
bpo-30860: Consolidate stateful runtime globals. (#3397)
Eric Snow
2017-09-07
1
-1
/
+2
*
bpo-31370: Remove support for threads-less builds (#3385)
Antoine Pitrou
2017-09-07
1
-13
/
+0
*
Revert "bpo-30860: Consolidate stateful runtime globals." (#3379)
Eric Snow
2017-09-05
1
-1
/
+1
*
bpo-30860: Consolidate stateful runtime globals. (#2594)
Eric Snow
2017-09-05
1
-1
/
+1
*
Revert "bpo-17852: Maintain a list of BufferedWriter objects. Flush them on ...
Neil Schemenauer
2017-09-04
1
-45
/
+1
*
bpo-17852: Maintain a list of BufferedWriter objects. Flush them on exit. (#...
Neil Schemenauer
2017-09-04
1
-1
/
+45
*
bpo-30022: Get rid of using EnvironmentError and IOError (except test… (#1051)
Serhiy Storchaka
2017-04-16
1
-9
/
+9
*
bpo-29852: Argument Clinic Py_ssize_t converter now supports None (#716)
Serhiy Storchaka
2017-03-30
1
-11
/
+4
*
bpo-6532: Make the thread id an unsigned integer. (#781)
Serhiy Storchaka
2017-03-23
1
-1
/
+1
*
bpo-29865: Use PyXXX_GET_SIZE macros rather than Py_SIZE for concrete types. ...
Serhiy Storchaka
2017-03-21
1
-1
/
+1
*
bpo-25455: Fixed crashes in repr of recursive buffered file-like objects. (#514)
Serhiy Storchaka
2017-03-19
1
-2
/
+12
*
Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE wherever
Serhiy Storchaka
2017-01-23
1
-4
/
+2
*
Use _PyObject_CallMethodIdObjArgs() in _io
Victor Stinner
2016-12-09
1
-1
/
+2
*
Added the const qualifier to char* variables that refer to readonly internal
Serhiy Storchaka
2016-11-20
1
-1
/
+1
*
Issue #23214: Implement optional BufferedReader, BytesIO read1() argument
Martin Panter
2016-10-20
1
-6
/
+4
*
Issue #20699: Merge io bytes-like fixes from 3.5
Martin Panter
2016-05-28
1
-2
/
+2
|
\
|
*
Issue #20699: Document that “io” methods accept bytes-like objects
Martin Panter
2016-05-28
1
-2
/
+2
*
|
Issue #22570: Renamed Py_SETREF to Py_XSETREF.
Serhiy Storchaka
2016-04-06
1
-4
/
+4
|
\
|
|
*
Issue #22570: Renamed Py_SETREF to Py_XSETREF.
Serhiy Storchaka
2016-04-06
1
-4
/
+4
*
|
Issue #22854: Merge UnsupportedOperation fixes from 3.5
Martin Panter
2016-03-31
1
-2
/
+0
|
\
|
|
*
Issue #22854: Clarify documentation about UnsupportedOperation and add tests
Martin Panter
2016-03-31
1
-2
/
+0
*
|
Issue #20440: Applied yet one patch for using Py_SETREF.
Serhiy Storchaka
2015-12-27
1
-8
/
+4
|
\
|
|
*
Issue #20440: Applied yet one patch for using Py_SETREF.
Serhiy Storchaka
2015-12-27
1
-8
/
+4
*
|
Issue #25923: Added more const qualifiers to signatures of static and private...
Serhiy Storchaka
2015-12-25
1
-1
/
+1
|
/
*
Issue #25421: __sizeof__ methods of builtin types now use dynamic basic size.
Serhiy Storchaka
2015-12-19
1
-1
/
+1
*
Fixes cast warning in bufferedio.c
Steve Dower
2015-05-23
1
-1
/
+1
*
Issue #23796: peak and read1 methods of BufferedReader now raise ValueError
Berker Peksag
2015-05-12
1
-0
/
+5
*
Issue #24001: Argument Clinic converters now use accept={type}
Larry Hastings
2015-05-04
1
-8
/
+8
*
Issue #20175: Converted the _io module to Argument Clinic.
Serhiy Storchaka
2015-04-16
1
-475
/
+518
*
Issue #23309: Avoid a deadlock at shutdown if a daemon thread is aborted
Antoine Pitrou
2015-04-13
1
-1
/
+22
|
\
|
*
Issue #23309: Avoid a deadlock at shutdown if a daemon thread is aborted
Antoine Pitrou
2015-04-13
1
-1
/
+22
*
|
Issue #21802: The reader in BufferedRWPair now is closed even when closing
Serhiy Storchaka
2015-03-24
1
-4
/
+10
|
\
|
|
*
Issue #21802: The reader in BufferedRWPair now is closed even when closing
Serhiy Storchaka
2015-03-24
1
-4
/
+10
*
|
Removed unintentional trailing spaces in non-external and non-generated C files.
Serhiy Storchaka
2015-03-18
1
-2
/
+2
[next]