<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/cpython-git.git/Modules/main.c, branch enum-lost-fixes</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>Typo in comment (GH-24199)</title>
<updated>2021-01-25T22:51:48+00:00</updated>
<author>
<name>borispopoff</name>
<email>58560689+borispopoff@users.noreply.github.com</email>
</author>
<published>2021-01-25T22:51:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=c7c3b7db29c4dda0519acdf7450e20d47a6409f4'/>
<id>c7c3b7db29c4dda0519acdf7450e20d47a6409f4</id>
<content type='text'>
Automerge-Triggered-By: GH:Mariatta</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Automerge-Triggered-By: GH:Mariatta</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-32381: pymain_run_command() uses PyCF_IGNORE_COOKIE (GH-23724)</title>
<updated>2020-12-23T18:16:56+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>vstinner@python.org</email>
</author>
<published>2020-12-23T18:16:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=a12491681f08a33abcca843f5150330740c91111'/>
<id>a12491681f08a33abcca843f5150330740c91111</id>
<content type='text'>
The coding cookie (ex: "# coding: latin1") is now ignored in the
command passed to the -c command line option.

Since pymain_run_command() uses UTF-8, pass PyCF_IGNORE_COOKIE
compiler flag to the parser.

pymain_run_python() no longer propages compiler flags between
function calls.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The coding cookie (ex: "# coding: latin1") is now ignored in the
command passed to the -c command line option.

Since pymain_run_command() uses UTF-8, pass PyCF_IGNORE_COOKIE
compiler flag to the parser.

pymain_run_python() no longer propages compiler flags between
function calls.</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-32381: pymain_run_file() uses PySys_FormatStderr() (GH-23778)</title>
<updated>2020-12-15T15:25:27+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>vstinner@python.org</email>
</author>
<published>2020-12-15T15:25:27+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=ceb420251c1d635520049fbb7b5269a73d63fb58'/>
<id>ceb420251c1d635520049fbb7b5269a73d63fb58</id>
<content type='text'>
If config-&gt;run_filename doesn't exist, log the error into sys.stderr
using "%R" format, to escape properly unencodable characters (usually
with backslashreplace).</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
If config-&gt;run_filename doesn't exist, log the error into sys.stderr
using "%R" format, to escape properly unencodable characters (usually
with backslashreplace).</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-32381: Add _PyRun_AnyFileObject() (GH-23723)</title>
<updated>2020-12-09T21:37:27+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>vstinner@python.org</email>
</author>
<published>2020-12-09T21:37:27+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=a82f63f5af027a0eab0f0812d750b804368cbd25'/>
<id>a82f63f5af027a0eab0f0812d750b804368cbd25</id>
<content type='text'>
pymain_run_file() no longer encodes the filename: pass the filename
as an object to the new _PyRun_AnyFileObject() function.

Add new private functions:

* _PyRun_AnyFileObject()
* _PyRun_InteractiveLoopObject()
* _Py_FdIsInteractive()</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
pymain_run_file() no longer encodes the filename: pass the filename
as an object to the new _PyRun_AnyFileObject() function.

Add new private functions:

* _PyRun_AnyFileObject()
* _PyRun_InteractiveLoopObject()
* _Py_FdIsInteractive()</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-32381: Add _PyRun_SimpleFileObject() (GH-23709)</title>
<updated>2020-12-08T23:32:54+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>vstinner@python.org</email>
</author>
<published>2020-12-08T23:32:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=550e4673be538d98b6ddf5550b3922539cf5c4b2'/>
<id>550e4673be538d98b6ddf5550b3922539cf5c4b2</id>
<content type='text'>
pymain_run_startup() now pass the filename as a Python object to
_PyRun_SimpleFileObject().</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
pymain_run_startup() now pass the filename as a Python object to
_PyRun_SimpleFileObject().</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-41602: raise SIGINT exit code on KeyboardInterrupt from pymain_run_module (#21956)</title>
<updated>2020-09-22T15:53:03+00:00</updated>
<author>
<name>Thomas Grainger</name>
<email>tagrain@gmail.com</email>
</author>
<published>2020-09-22T15:53:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=a68a2ad19c891faa891904b3da537911cc77df21'/>
<id>a68a2ad19c891faa891904b3da537911cc77df21</id>
<content type='text'>
Closes bpo issue 41602</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes bpo issue 41602</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-41094: Additional fix for PYTHONSTARTUP. (GH-21119)</title>
<updated>2020-06-24T16:46:30+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2020-06-24T16:46:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=a7dc71470156680f1fd5243290c6d377824b7ef4'/>
<id>a7dc71470156680f1fd5243290c6d377824b7ef4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-41094: Fix decoding errors with audit when open files. (GH-21095)</title>
<updated>2020-06-24T05:46:05+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2020-06-24T05:46:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=6c6810d98979add7a89391c3c38990d0859f7a29'/>
<id>6c6810d98979add7a89391c3c38990d0859f7a29</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-40268: Remove unused imports in pylifecycle.c (GH-19533)</title>
<updated>2020-04-15T02:01:58+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>vstinner@python.org</email>
</author>
<published>2020-04-15T02:01:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=4f98f465f14e7258c5b18a62c5aa114dbe1174d8'/>
<id>4f98f465f14e7258c5b18a62c5aa114dbe1174d8</id>
<content type='text'>
Remove unused imports in files:

* initconfig.c
* main.c
* preconfig.h
* pylifecycle.c
* python.c
* pythonrun.c</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Remove unused imports in files:

* initconfig.c
* main.c
* preconfig.h
* pylifecycle.c
* python.c
* pythonrun.c</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-40268: Remove unused pycore_pymem.h includes (GH-19531)</title>
<updated>2020-04-15T00:57:50+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>vstinner@python.org</email>
</author>
<published>2020-04-15T00:57:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=d9ea5cae1d07e1ee8b03540a9367c26205e0e360'/>
<id>d9ea5cae1d07e1ee8b03540a9367c26205e0e360</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
