<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/cpython-git.git/Modules/_io, branch orphaned-comment</title>
<subtitle>github.com: python/cpython.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/'/>
<entry>
<title>Remove unused variables. (GH-29231)</title>
<updated>2021-10-26T23:22:34+00:00</updated>
<author>
<name>Benjamin Peterson</name>
<email>benjamin@python.org</email>
</author>
<published>2021-10-26T23:22:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=19a6c41e56f129a67e2a3c96464ba893a97236f7'/>
<id>19a6c41e56f129a67e2a3c96464ba893a97236f7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-45434: Move _Py_BEGIN_SUPPRESS_IPH to pycore_fileutils.h (GH-28922)</title>
<updated>2021-10-13T13:03:35+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>vstinner@python.org</email>
</author>
<published>2021-10-13T13:03:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=97308dfcdc0696e0b116c37386e2ff4d72e6c3f4'/>
<id>97308dfcdc0696e0b116c37386e2ff4d72e6c3f4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-45439: Move _PyObject_CallNoArgs() to pycore_call.h (GH-28895)</title>
<updated>2021-10-12T06:38:19+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>vstinner@python.org</email>
</author>
<published>2021-10-12T06:38:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=d943d19172aa93ce88bade15b9f23a0ce3bc72ff'/>
<id>d943d19172aa93ce88bade15b9f23a0ce3bc72ff</id>
<content type='text'>
* Move _PyObject_CallNoArgs() to pycore_call.h (internal C API).
* _ssl, _sqlite and _testcapi extensions now call the public
  PyObject_CallNoArgs() function, rather than _PyObject_CallNoArgs().
* _lsprof extension is now built with Py_BUILD_CORE_MODULE macro
  defined to get access to internal _PyObject_CallNoArgs().</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Move _PyObject_CallNoArgs() to pycore_call.h (internal C API).
* _ssl, _sqlite and _testcapi extensions now call the public
  PyObject_CallNoArgs() function, rather than _PyObject_CallNoArgs().
* _lsprof extension is now built with Py_BUILD_CORE_MODULE macro
  defined to get access to internal _PyObject_CallNoArgs().</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-45439: Rename _PyObject_CallNoArg() to _PyObject_CallNoArgs() (GH-28891)</title>
<updated>2021-10-11T22:42:23+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>vstinner@python.org</email>
</author>
<published>2021-10-11T22:42:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=ce3489cfdb9f0e050bdc45ce5d3902c2577ea683'/>
<id>ce3489cfdb9f0e050bdc45ce5d3902c2577ea683</id>
<content type='text'>
Fix typo in the private _PyObject_CallNoArg() function name: rename
it to _PyObject_CallNoArgs() to be consistent with the public
function PyObject_CallNoArgs().</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix typo in the private _PyObject_CallNoArg() function name: rename
it to _PyObject_CallNoArgs() to be consistent with the public
function PyObject_CallNoArgs().</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-44687: Ensure BufferedReader objects with unread buffers can peek even when the underlying file is closed (GH-28457)</title>
<updated>2021-10-01T20:11:08+00:00</updated>
<author>
<name>AngstyDuck</name>
<email>solsticedante@gmail.com</email>
</author>
<published>2021-10-01T20:11:08+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=a450398933d265011e1e8eae7f771b70f97945fb'/>
<id>a450398933d265011e1e8eae7f771b70f97945fb</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-43413: Fix handling keyword arguments in subclasses of some buitin classes (GH-26456)</title>
<updated>2021-09-12T10:27:50+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2021-09-12T10:27:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=92bf8691fb78f3484bf2daba836c416efedb1d8d'/>
<id>92bf8691fb78f3484bf2daba836c416efedb1d8d</id>
<content type='text'>
* Constructors of subclasses of some buitin classes (e.g. tuple, list,
  frozenset) no longer accept arbitrary keyword arguments.
* Subclass of set can now define a __new__() method with additional
  keyword parameters without overriding also __init__().</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Constructors of subclasses of some buitin classes (e.g. tuple, list,
  frozenset) no longer accept arbitrary keyword arguments.
* Subclass of set can now define a __new__() method with additional
  keyword parameters without overriding also __init__().</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-45094: Add Py_NO_INLINE macro (GH-28140)</title>
<updated>2021-09-03T14:44:02+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>vstinner@python.org</email>
</author>
<published>2021-09-03T14:44:02+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=7974c30b9fd84fa56ea1515ed2c08b38edf1a383'/>
<id>7974c30b9fd84fa56ea1515ed2c08b38edf1a383</id>
<content type='text'>
* Rename _Py_NO_INLINE macro to Py_NO_INLINE: make it public and
  document it.
* Sort macros in the C API documentation.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Rename _Py_NO_INLINE macro to Py_NO_INLINE: make it public and
  document it.
* Sort macros in the C API documentation.</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-37330: open() no longer accept 'U' in file mode (GH-28118)</title>
<updated>2021-09-02T10:58:00+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>vstinner@python.org</email>
</author>
<published>2021-09-02T10:58:00+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=19ba2122ac7313ac29207360cfa864a275b9489e'/>
<id>19ba2122ac7313ac29207360cfa864a275b9489e</id>
<content type='text'>
open(), io.open(), codecs.open() and fileinput.FileInput no longer
accept "U" ("universal newline") in the file mode. This flag was
deprecated since Python 3.3.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
open(), io.open(), codecs.open() and fileinput.FileInput no longer
accept "U" ("universal newline") in the file mode. This flag was
deprecated since Python 3.3.</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-30555: Fix WindowsConsoleIO fails in the presence of fd redirection (GH-1927)</title>
<updated>2021-04-23T22:00:27+00:00</updated>
<author>
<name>Segev Finer</name>
<email>segev208@gmail.com</email>
</author>
<published>2021-04-23T22:00:27+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=5e437fb872279960992c9a07f1a4c051b4948c53'/>
<id>5e437fb872279960992c9a07f1a4c051b4948c53</id>
<content type='text'>
This works by not caching the handle and instead getting the handle from
the file descriptor each time, so that if the actual handle changes by
fd redirection closing/opening the console handle beneath our feet, we
will keep working correctly.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This works by not caching the handle and instead getting the handle from
the file descriptor each time, so that if the actual handle changes by
fd redirection closing/opening the console handle beneath our feet, we
will keep working correctly.</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-43510: Fix emitting EncodingWarning from _io module. (GH-25146)</title>
<updated>2021-04-02T08:38:59+00:00</updated>
<author>
<name>Inada Naoki</name>
<email>songofacandy@gmail.com</email>
</author>
<published>2021-04-02T08:38:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=bec8c787ec72d73b39011bde3f3a93e9bb1174b7'/>
<id>bec8c787ec72d73b39011bde3f3a93e9bb1174b7</id>
<content type='text'>
I forget to check PyErr_WarnEx() return value. But it will fail when -Werror is used.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
I forget to check PyErr_WarnEx() return value. But it will fail when -Werror is used.</pre>
</div>
</content>
</entry>
</feed>
