Staging
v0.5.1
https://github.com/python/cpython

sort by:
Revision Author Date Message Commit Date
978259e Give a more informative message on an importlib test upon failure. 02 April 2009, 15:32:07 UTC
944820b Issue #5640: Fix _multibytecodec so that CJK codecs don't repeat error replacement returned by codec error callbacks twice in IncrementalEncoder and StreamWriter. 02 April 2009, 10:33:16 UTC
a3d056e Check that on a platform that is expected to have a case-insensitive filesystem that is in fact the case. Closes issue #5442. 02 April 2009, 05:17:54 UTC
bd25d33 Clarify that datetime strftime does not produce leap seconds and datetime strptime does not accept it in the strftime behavior section of the datetime docs. Closes issue 2568. Porting by hand since svnmerge disclaims all knowledge of the trunk commit. 02 April 2009, 04:50:03 UTC
a826f32 Merged revisions 71031 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r71031 | brett.cannon | 2009-04-01 20:17:39 -0700 (Wed, 01 Apr 2009) | 6 lines PyImport_AppendInittab() took a char * as a first argument even though that string was stored beyond the life of the call. Changed the signature to be const char * to help make this point. Closes issue #1419652. ........ 02 April 2009, 03:41:46 UTC
3e2ea79 Fixing the issue4860. Escaping the embedded '"' in the js_output method of Morsel class. 02 April 2009, 03:02:03 UTC
b868a66 First batch of signature documentation changes; using default argument syntax where applicable. 02 April 2009, 02:56:10 UTC
acc9dcc remove unused variable 02 April 2009, 02:27:56 UTC
d1e5493 rewrite error handling to make sense 02 April 2009, 02:27:20 UTC
22081a1 fix ref leaks 02 April 2009, 01:50:37 UTC
9762a3e add io and _pyio to test___all__ 02 April 2009, 01:14:45 UTC
bfb9594 Merged revisions 71014 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r71014 | benjamin.peterson | 2009-04-01 20:03:17 -0500 (Wed, 01 Apr 2009) | 1 line handle SEEK_ constants in test_io ........ 02 April 2009, 01:13:40 UTC
8d5fd4e add SEEK_ constants to _pyio 02 April 2009, 01:03:26 UTC
7fe9853 make 'c' only accept bytes and 'C' only unicode #5499 02 April 2009, 00:33:55 UTC
605b9d9 fix markup 02 April 2009, 00:24:00 UTC
bc6c2b5 Explain a little about the explanation. 01 April 2009, 23:36:48 UTC
9f4cb1c Add a meta path importer example. 01 April 2009, 23:26:47 UTC
33c2881 #5656: detect correct encoding of files when reporting coverage in trace.py, and ignore files in the temporary directory when reporting. 01 April 2009, 23:07:29 UTC
cde68cf Merged revisions 70997 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r70997 | r.david.murray | 2009-04-01 17:26:18 -0400 (Wed, 01 Apr 2009) | 3 lines Add tests checking the CSV module's ability to handle embedded newlines in quoted field values. ........ 01 April 2009, 22:37:58 UTC
0e4caf4 Merged revisions 70992,70995 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r70992 | georg.brandl | 2009-04-01 16:00:55 -0500 (Wed, 01 Apr 2009) | 1 line #4572: add SEEK_* values as constants in io.py. ........ r70995 | benjamin.peterson | 2009-04-01 16:12:54 -0500 (Wed, 01 Apr 2009) | 1 line add seek constants to __all__ ........ 01 April 2009, 21:22:20 UTC
1fd32a6 Add link to an alternative generator with a long-period. 01 April 2009, 20:52:13 UTC
4b413d3 Merged revisions 70953 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r70953 | hirokazu.yamamoto | 2009-04-01 10:13:52 -0500 (Wed, 01 Apr 2009) | 1 line Fixed compile error on windows. ........ 01 April 2009, 20:51:28 UTC
16248a4 Add some clarification to the importlib docs. 01 April 2009, 20:47:14 UTC
91d7dfd barry has already been causing test breakage 01 April 2009, 20:38:13 UTC
fcc0527 Merged revisions 70979 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r70979 | brett.cannon | 2009-04-01 13:25:48 -0700 (Wed, 01 Apr 2009) | 3 lines test_warnings ironically had a single test that was not protecting the warnings filter and was resetting it. ........ 01 April 2009, 20:27:29 UTC
b3af08f Fix for issue5040. Adding support for unicode message passing and tests for unicode message and test for Content-Length. 01 April 2009, 20:20:43 UTC
df8709d Merged revisions 70975 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r70975 | brett.cannon | 2009-04-01 12:57:10 -0700 (Wed, 01 Apr 2009) | 4 lines test_logging was blindly clearing the warnings filter. This caused PendingDeprecationWarnings to be spewed all over by unittest.failIf*(). Fix moves over to using warnings.catch_warning to protect the warnings filter. ........ 01 April 2009, 20:01:47 UTC
3f10a95 Issue #5647: MutableSet.__iand__() no longer mutates self during iteration. 01 April 2009, 19:05:50 UTC
0759dd6 Merged revisions 70965 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r70965 | brett.cannon | 2009-04-01 11:03:59 -0700 (Wed, 01 Apr 2009) | 5 lines _warnings was importing itself to get an attribute. That's bad if warnings gets called in a thread that was spawned by an import itself. Last part to close #1665206. ........ 01 April 2009, 18:13:07 UTC
86fe876 Remove redundant import of tkinter. 01 April 2009, 16:39:21 UTC
f47e84c Merged revisions 70956 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r70956 | brett.cannon | 2009-04-01 09:00:34 -0700 (Wed, 01 Apr 2009) | 5 lines The cgitb module had imports in its functions. This can cause deadlock with the import lock if called from within a thread that was triggered by an import. Partially fixes issue #1665206. ........ 01 April 2009, 16:06:01 UTC
c748506 #5636: fix next -> __next__ in csv reader docs. 01 April 2009, 15:53:15 UTC
9ae3640 Fix typo in configure line that caused the build installer to not use the right LDFLAGS settings. 01 April 2009, 14:59:59 UTC
42a40c5 Allow skipping of regression tests not supported on windows. This reduces noise in the regression test suite for py3k on Windows. 01 April 2009, 11:28:47 UTC
e3944a5 The BDFL has retired! Long live the FLUFL (Friendly Language Uncle For Life)! 01 April 2009, 05:08:41 UTC
4ed72ac #5624: _winreg is winreg in Python 3. 01 April 2009, 04:28:33 UTC
99412e5 Merged revisions 70940 via svnmerge ........ r70940 | georg.brandl | 2009-03-31 23:21:14 -0500 (Di, 31 Mär 2009) | 2 lines The SimpleXMLRPCServer's CGI handler now runs like a pony. ........ 01 April 2009, 04:27:47 UTC
e0cbd69 Merged revisions 70931 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r70931 | jack.diederich | 2009-03-31 19:46:48 -0400 (Tue, 31 Mar 2009) | 1 line #5228: add pickle support to functools.partial ........ 01 April 2009, 04:27:09 UTC
e59482e Merged revisions 70936 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r70936 | r.david.murray | 2009-03-31 23:21:43 -0400 (Tue, 31 Mar 2009) | 4 lines Fix issue 2522. locale.format now checks that it is passed exactly one pattern, which avoids mysterious errors where it had seemed to fail to do localization. ........ 01 April 2009, 03:42:00 UTC
12e533d Rip out a useless method that the superclass implements properly. 01 April 2009, 03:35:20 UTC
a7cff02 An HTTPResponse is, by its nature, readable. 01 April 2009, 02:35:56 UTC
6af6d26 Merged revisions 70930 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r70930 | r.david.murray | 2009-03-31 19:45:39 -0400 (Tue, 31 Mar 2009) | 3 lines Fix Windows test skip error revealed by buildbot. Also a comment spelling correction in a previously fixed test. ........ 31 March 2009, 23:50:31 UTC
a21e4ca Merged revisions 70734,70775,70856,70874,70876-70877 via svnmerge ........ r70734 | r.david.murray | 2009-03-30 15:04:00 -0400 (Mon, 30 Mar 2009) | 7 lines Add import_function method to test.test_support, and modify a number of tests that expect to be skipped if imports fail or functions don't exist to use import_function and import_module. The ultimate goal is to change regrtest to not skip automatically on ImportError. Checking in now to make sure the buldbots don't show any errors on platforms I can't direct test on. ........ r70775 | r.david.murray | 2009-03-30 19:05:48 -0400 (Mon, 30 Mar 2009) | 4 lines Change more tests to use import_module for the modules that should cause tests to be skipped. Also rename import_function to the more descriptive get_attribute and add a docstring. ........ r70856 | r.david.murray | 2009-03-31 14:32:17 -0400 (Tue, 31 Mar 2009) | 7 lines A few more test skips via import_module, and change import_module to return the error message produced by importlib, so that if an import in the package whose import is being wrapped is what failed the skip message will contain the name of that module instead of the name of the wrapped module. Also fixed formatting of some previous comments. ........ r70874 | r.david.murray | 2009-03-31 15:33:15 -0400 (Tue, 31 Mar 2009) | 5 lines Improve test_support.import_module docstring, remove deprecated flag from get_attribute since it isn't likely to do anything useful. ........ r70876 | r.david.murray | 2009-03-31 15:49:15 -0400 (Tue, 31 Mar 2009) | 4 lines Remove the regrtest check that turns any ImportError into a skipped test. Hopefully all modules whose imports legitimately result in a skipped test have been properly wrapped by the previous commits. ........ r70877 | r.david.murray | 2009-03-31 15:57:24 -0400 (Tue, 31 Mar 2009) | 2 lines Add NEWS entry for regrtest change. ........ 31 March 2009, 23:16:50 UTC
a1b4901 fix TextIOWrapper.read() when the buffer is not readable #5628 31 March 2009, 23:11:32 UTC
d2ee64d Improve examples for collections.deque() 31 March 2009, 22:52:48 UTC
3091129 Merged revisions 70920,70922 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r70920 | tarek.ziade | 2009-03-31 17:44:10 -0500 (Tue, 31 Mar 2009) | 1 line catching msvc9compiler error as well ........ r70922 | tarek.ziade | 2009-03-31 17:47:01 -0500 (Tue, 31 Mar 2009) | 1 line fixed the test for win32 CompileError ........ 31 March 2009, 22:50:54 UTC
17b9e27 Run 2to3 over new script. 31 March 2009, 22:46:50 UTC
369bc0f Readd -n. 31 March 2009, 22:42:41 UTC
b2e36f1 Merged revisions 70910 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r70910 | tarek.ziade | 2009-03-31 17:27:23 -0500 (Tue, 31 Mar 2009) | 1 line #5583 Added optional Extensions in Distutils ........ 31 March 2009, 22:37:55 UTC
a931404 Merged revisions 70908 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r70908 | jesse.noller | 2009-03-31 17:20:35 -0500 (Tue, 31 Mar 2009) | 1 line Issue 5619: Pass MS CRT debug flags into subprocesses ........ 31 March 2009, 22:36:44 UTC
baf5180 Merged revisions 70886,70888-70892 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r70886 | tarek.ziade | 2009-03-31 15:50:59 -0500 (Tue, 31 Mar 2009) | 1 line added tests for the clean command ........ r70888 | tarek.ziade | 2009-03-31 15:53:13 -0500 (Tue, 31 Mar 2009) | 1 line more tests for the register command ........ r70889 | tarek.ziade | 2009-03-31 15:53:55 -0500 (Tue, 31 Mar 2009) | 1 line more tests for the upload command ........ r70890 | tarek.ziade | 2009-03-31 15:54:38 -0500 (Tue, 31 Mar 2009) | 1 line added test to the install_data command ........ r70891 | tarek.ziade | 2009-03-31 15:55:21 -0500 (Tue, 31 Mar 2009) | 1 line added tests to the install_headers command ........ r70892 | tarek.ziade | 2009-03-31 15:56:11 -0500 (Tue, 31 Mar 2009) | 1 line making sdist and config test silents ........ 31 March 2009, 21:37:16 UTC
2ca1501 Merged revisions 70879 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r70879 | hirokazu.yamamoto | 2009-04-01 05:14:04 +0900 | 1 line Issue #5387: Fixed mmap.move crash by integer overflow. (take2) ........ 31 March 2009, 20:43:56 UTC
33413cb Add missing label. 31 March 2009, 19:06:37 UTC
890a49a #1717: fix-up docs for comparison in newtypes document. 31 March 2009, 18:56:38 UTC
32d68c2 Merged revisions 70849,70852 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r70849 | jesse.noller | 2009-03-31 13:12:35 -0500 (Tue, 31 Mar 2009) | 1 line Apply patch for netbsd multiprocessing support ........ r70852 | jesse.noller | 2009-03-31 13:27:14 -0500 (Tue, 31 Mar 2009) | 1 line missed the news/acks for netbsd patch ........ 31 March 2009, 18:48:42 UTC
ce9fbd3 #5241: document missing A in regex howto. 31 March 2009, 18:41:03 UTC
720b9d2 Blocked revisions 70858 via svnmerge ........ r70858 | georg.brandl | 2009-03-31 13:38:56 -0500 (Di, 31 Mär 2009) | 1 line #5241: document missing U in regex howto. ........ 31 March 2009, 18:40:41 UTC
a6f2946 Merged revisions 70779 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r70779 | r.david.murray | 2009-03-30 19:10:37 -0400 (Mon, 30 Mar 2009) | 3 lines Actually suppress warnings in test_at_least_import_untested_modules inside the catch_warnings context manager. ........ 31 March 2009, 18:27:51 UTC
9dbc670 Per the language summit, the optional fastpath imports should use from-import-star. 31 March 2009, 17:51:51 UTC
92af5d9 Fix a leaking "pathname" in import.c 31 March 2009, 17:47:50 UTC
e1b0445 get_file() no longer leaks a FILE structure. If given a file descriptor, it calls dup() to get a new handle. Then both the FILE object and the fd can be closed. This is important, because otherwise, the leaked FILE object will be closed on process exit, causing assertions on Windows, e.g. in the test_multiprocessing.py regression test. 31 March 2009, 17:43:39 UTC
47f27a3 Forward-port of #992207 fix: document that the parser only accepts \\n newlines. (And remove a leftover footnote.) 31 March 2009, 16:57:13 UTC
b3259a4 Blocked revisions 70838 via svnmerge ........ r70838 | georg.brandl | 2009-03-31 11:54:38 -0500 (Di, 31 Mär 2009) | 1 line #992207: document that the parser only accepts \\n newlines. ........ 31 March 2009, 16:55:13 UTC
2bdb576 Make urllib use HTTP/1.1. It seems to work now, but hasn't been carefully tested. 31 March 2009, 16:37:16 UTC
2115176 #5548: do return the new module from PyMODINIT_FUNC functions. 31 March 2009, 15:52:41 UTC
5081f7e #5566: remove duplicate entry. 31 March 2009, 15:49:02 UTC
d186307 Blocked revisions 70825 via svnmerge ........ r70825 | georg.brandl | 2009-03-31 10:46:30 -0500 (Di, 31 Mär 2009) | 1 line #5566: fix versionadded from PyLong ssize_t functions. ........ 31 March 2009, 15:48:12 UTC
f37708e Merged revisions 70801,70809 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk The merge ran into a lot of conflicts because dicts were replaced with sets in the Python 3 version of the symbol table. ........ r70801 | jeremy.hylton | 2009-03-31 09:17:03 -0400 (Tue, 31 Mar 2009) | 3 lines Add is_declared_global() which distinguishes between implicit and explicit global variables. ........ r70809 | jeremy.hylton | 2009-03-31 09:48:15 -0400 (Tue, 31 Mar 2009) | 14 lines Global statements from one function leaked into parallel functions. Re http://bugs.python.org/issue4315 The symbol table used the same name dictionaries to recursively analyze each of its child blocks, even though the dictionaries are modified during analysis. The fix is to create new temporary dictionaries via the analyze_child_block(). The only information that needs to propagate back up is the names of the free variables. Add more comments and break out a helper function. This code doesn't get any easier to understand when you only look at it once a year. ........ 31 March 2009, 15:26:37 UTC
1052f89 Update HTTPResponse documentation and add placeholder for HTTPMessage. 31 March 2009, 14:40:19 UTC
e257316 Document public attributes of urllib.request.Request. 31 March 2009, 14:38:13 UTC
abb02fd Change email address. 31 March 2009, 14:37:44 UTC
6c5e28c Simplify the Request class. The basic components of the parsed Request are now available as public attributes, e.g. full_url and host. The accessor methods are deprecated. The implementation replace the complicated __getattr__ machinery with a _parse() method. The response from an HTTP request is now an HTTPResponse instance instead of an addinfourl() wrapper instance. The wrapper provided minimal extract functionality and was undocumented. The API of addinfourl() was preserved, except for close hooks, by adding a few methods and public attributes to the HTTPResponse class. 31 March 2009, 14:35:53 UTC
16caab0 Merged revisions 70800 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r70800 | hirokazu.yamamoto | 2009-03-31 22:13:05 +0900 | 1 line Issue #5387: Fixed mmap.move crash by integer overflow. ........ 31 March 2009, 13:44:06 UTC
6bf6367 Merged revisions 70802 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r70802 | ronald.oussoren | 2009-03-31 08:20:45 -0500 (Tue, 31 Mar 2009) | 4 lines Minor update to OSX build-installer script, needed to ensure that the build will succeed in a clean checkout and with a non-default deployment target. ........ 31 March 2009, 13:25:17 UTC
ab6f2f6 Fix segfaults when running test_exceptions with coverage tracing, caused by wrongly defining Exception.__context__ as a T_OBJECT structmember which does not set the member to NULL on None assignment, and generally does not do type checks. This could be used to crash the interpreter by setting any object to __context__. The same applies to __cause__. Also document the PyException_* functions. 31 March 2009, 04:16:10 UTC
71095ea The message for the exception when time.strptime was passed something other than str did not output the type of the argument but the object itself. 31 March 2009, 03:58:04 UTC
14f3ae2 merge 70792 to py3k 31 March 2009, 03:37:07 UTC
f8d0085 merge 70783 to py3k 31 March 2009, 03:25:07 UTC
6d4a9cf Add new copydir_run_2to3() function, for use e.g. in test runners to transparently convert and run tests written for Python 2. 31 March 2009, 00:34:54 UTC
bb93d17 Add example for new copydir_run_2to3(). 31 March 2009, 00:33:15 UTC
fa1fcd1 Merged revisions 70778 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r70778 | ronald.oussoren | 2009-03-30 18:10:35 -0500 (Mon, 30 Mar 2009) | 4 lines Fix issue #4865: add /Library/Python/2.7/site-packages to sys.path on OSX, to make it easier to share (some) installed packages between the system install and a user install. ........ 30 March 2009, 23:16:10 UTC
70d61ce "Port" the fix for issue 1974 from the trunk (2.7). Because Python 3.x does things much better, less changes are necessary. This also shoves test_email_codecs_rename.py onto test_email_codecs.py even though the test needs to be ported to Python 3. 30 March 2009, 23:12:30 UTC
35d1f00 finalize the queue to resolve test issue 30 March 2009, 22:59:27 UTC
0ad59d4 Issue #5604: non-ASCII characters in module name passed to imp.find_module() were converted to UTF-8 while the path is converted to the default filesystem encoding, causing nonsense. Thanks to Andrew Svetlov. (This time to the right branch. Will block duplicate merge to 3.0.2.) 30 March 2009, 22:01:35 UTC
eaaec27 Fix for Issue4962, issue4675. 30 March 2009, 21:54:41 UTC
7f6b4f8 Make sure time.strptime only accepts strings (and document the fact like strftime). Already didn't accept bytes but make the check earlier. This also lifts the limitation of requiring ASCII. Closes issue #5236. Thanks Tennessee Leeuwenburg. 30 March 2009, 21:30:26 UTC
d687887 Remove merging leftover. 30 March 2009, 21:21:05 UTC
0961354 Thorough review of importlib docs. Reviewed by Brett himself. 30 March 2009, 20:34:57 UTC
e8a2fe9 Fix for issue 5558 30 March 2009, 20:10:18 UTC
ac4b39f Merged revisions 70746 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r70746 | ronald.oussoren | 2009-03-30 15:02:08 -0500 (Mon, 30 Mar 2009) | 2 lines Fix for issue 13095 ........ 30 March 2009, 20:05:35 UTC
f29b6b4 Merged revisions 70741 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r70741 | ronald.oussoren | 2009-03-30 14:56:25 -0500 (Mon, 30 Mar 2009) | 2 lines Fixes issue 5270 ........ 30 March 2009, 20:00:00 UTC
8593a75 Fix importlib.machinery.PathFinder.find_module() to essentially skip over None entries in sys.path_importer_cache. While this differs from semantics in how __import__ works, it prevents any implicit semantics from taking hold with users. 30 March 2009, 19:57:15 UTC
0e31454 Enable "--with-computed-gotos" for the binary installer on OSX. 30 March 2009, 19:51:09 UTC
1943f86 Merged revisions 70737 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r70737 | ronald.oussoren | 2009-03-30 14:34:51 -0500 (Mon, 30 Mar 2009) | 6 lines * Set a custom icon on the Python installer DMG * Remove last traces of "MacPython" * Add options to build different flavors of the installer (still defaulting to a 2-way universal build that runs on OSX 10.3) ........ 30 March 2009, 19:39:14 UTC
4a85269 Merged revisions 70735 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r70735 | ronald.oussoren | 2009-03-30 14:22:56 -0500 (Mon, 30 Mar 2009) | 3 lines Remove usage of the deprecated '-cString' and '+stringWithCString:' API's in PythonLauncher, replacing them with the correct counterparts. ........ 30 March 2009, 19:25:21 UTC
e391835 Merged revisions 70730 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r70730 | ronald.oussoren | 2009-03-30 12:53:39 -0500 (Mon, 30 Mar 2009) | 3 lines Fix issue where 'make altinstall' or 'make install' would install everything that needs to be installed on OSX (depending on the configure flags) ........ 30 March 2009, 18:00:28 UTC
207b4c2 Merged revisions 70727 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r70727 | ronald.oussoren | 2009-03-30 12:15:29 -0500 (Mon, 30 Mar 2009) | 5 lines * Updates installed dependencies to latest releaases (bzip, zlib, ...) * Changes code for updating folder icons from Python code that uses the deprecated Carbon module to a much simpler Cocoa program in Objective-C ........ 30 March 2009, 17:20:30 UTC
7af4ef8 fix bad NEWS merge 30 March 2009, 16:47:15 UTC
c5d28a0 Merge 70717 to 30maint 30 March 2009, 16:37:36 UTC
6ae7a7d Add simple tests for __import__ for future optimizations to importlib. 30 March 2009, 15:53:01 UTC
back to top