<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/cpython-git.git/Python/import.c, branch v3.2.1rc2</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>Merge branches/pep-0384.</title>
<updated>2010-12-03T20:14:31+00:00</updated>
<author>
<name>Martin v. Löwis</name>
<email>martin@v.loewis.de</email>
</author>
<published>2010-12-03T20:14:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=4d0d471a8031de90a2b1ce99c4ac4780e60b3bc9'/>
<id>4d0d471a8031de90a2b1ce99c4ac4780e60b3bc9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>import: use PyUnicode_FSConverter to support bytes path and PEP 383</title>
<updated>2010-12-03T17:06:43+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>victor.stinner@haypocalc.com</email>
</author>
<published>2010-12-03T17:06:43+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=ebc0052e3a4f602212ed528ac490a9082ac811ce'/>
<id>ebc0052e3a4f602212ed528ac490a9082ac811ce</id>
<content type='text'>
(instead of PyArg_Parse*() with "es" format and Py_FileSystemDefaultEncoding)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
(instead of PyArg_Parse*() with "es" format and Py_FileSystemDefaultEncoding)
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #9573: os.fork now works when triggered as a side effect of import (the wisdom of actually relying on this remains questionable!)</title>
<updated>2010-12-02T04:11:46+00:00</updated>
<author>
<name>Nick Coghlan</name>
<email>ncoghlan@gmail.com</email>
</author>
<published>2010-12-02T04:11:46+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=b2ddf7979d228f2e61a4b9d174759ba39737930e'/>
<id>b2ddf7979d228f2e61a4b9d174759ba39737930e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove redundant includes of headers that are already included by Python.h.</title>
<updated>2010-11-30T09:41:01+00:00</updated>
<author>
<name>Georg Brandl</name>
<email>georg@python.org</email>
</author>
<published>2010-11-30T09:41:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=e5b99f0fb306b80118849048b3d145c1a614c38b'/>
<id>e5b99f0fb306b80118849048b3d145c1a614c38b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #10359: Remove ";" after function definition, invalid in ISO C</title>
<updated>2010-11-09T09:32:19+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>victor.stinner@haypocalc.com</email>
</author>
<published>2010-11-09T09:32:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=3e2b7171bf29f80c06805e60741b5b813376294e'/>
<id>3e2b7171bf29f80c06805e60741b5b813376294e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>find_module(): use FS encoding to display the missing __init__ warning</title>
<updated>2010-10-17T02:07:09+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>victor.stinner@haypocalc.com</email>
</author>
<published>2010-10-17T02:07:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=ed7916dd001d5d49b5be04a745c2f83826b27fe2'/>
<id>ed7916dd001d5d49b5be04a745c2f83826b27fe2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>_PyImport_FixupExtension() and _PyImport_FindExtension() uses FS encoding</title>
<updated>2010-10-17T01:24:53+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>victor.stinner@haypocalc.com</email>
</author>
<published>2010-10-17T01:24:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=49d3f2514b4edcabae3b08286016c98b584bb3a2'/>
<id>49d3f2514b4edcabae3b08286016c98b584bb3a2</id>
<content type='text'>
 * Rename _PyImport_FindExtension() to _PyImport_FindExtensionUnicode():
   the filename becomes a Unicode object instead of byte string
 * Rename _PyImport_FixupExtension() to _PyImport_FixupExtensionUnicode():
   the filename becomes a Unicode object instead of byte string
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
 * Rename _PyImport_FindExtension() to _PyImport_FindExtensionUnicode():
   the filename becomes a Unicode object instead of byte string
 * Rename _PyImport_FixupExtension() to _PyImport_FixupExtensionUnicode():
   the filename becomes a Unicode object instead of byte string
</pre>
</div>
</content>
</entry>
<entry>
<title>fix refleak</title>
<updated>2010-10-16T03:12:39+00:00</updated>
<author>
<name>Benjamin Peterson</name>
<email>benjamin@python.org</email>
</author>
<published>2010-10-16T03:12:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=294a9fcba67b95efc62c5461fcc6fe9a5a59c525'/>
<id>294a9fcba67b95efc62c5461fcc6fe9a5a59c525</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix imp_cache_from_source(): Decode make_compiled_pathname() result from the</title>
<updated>2010-10-15T22:46:07+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>victor.stinner@haypocalc.com</email>
</author>
<published>2010-10-15T22:46:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=88bd891e6c536cec0b53d2a52115f44f8498c331'/>
<id>88bd891e6c536cec0b53d2a52115f44f8498c331</id>
<content type='text'>
filesystem encoding instead of utf-8.

imp_cache_from_source() encodes the input path to filesystem encoding and this
path is passed to make_compiled_pathname().
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
filesystem encoding instead of utf-8.

imp_cache_from_source() encodes the input path to filesystem encoding and this
path is passed to make_compiled_pathname().
</pre>
</div>
</content>
</entry>
<entry>
<title>imp_load_module() uses PyUnicode_FSConverter() to support surrogates in module</title>
<updated>2010-10-15T22:43:10+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>victor.stinner@haypocalc.com</email>
</author>
<published>2010-10-15T22:43:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=1a5630326f0992db78949a378a32b4979517e200'/>
<id>1a5630326f0992db78949a378a32b4979517e200</id>
<content type='text'>
path
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
path
</pre>
</div>
</content>
</entry>
</feed>
