- 11 May, 2012 8 commits
-
-
Brett Cannon authored
importlib.abc.FileLoader.load_module()/get_filename() and importlib.machinery.ExtensionFileLoader.load_module() have their single argument be optional as the loader's constructor has all the ncessary information. This allows for the deprecation of imp.load_source()/load_compile()/load_package().
-
Brett Cannon authored
-
Brett Cannon authored
-
Brett Cannon authored
importlib.machinery that provide the suffix details for import. The attributes were not put on imp so as to compartmentalize everything importlib needs for setting up imports in importlib.machinery. This also led to an indirect deprecation of inspect.getmoduleinfo() as it directly returned imp.get_suffix's returned tuple which no longer makes sense.
-
Brett Cannon authored
import machinery is no longer implicit.
-
Ned Deily authored
-
Ned Deily authored
support chflag operations. (Patch by Hynek Schlawack)
-
Ned Deily authored
support chflag operations. (Patch by Hynek Schlawack)
-
- 10 May, 2012 13 commits
-
-
Benjamin Peterson authored
-
Antoine Pitrou authored
Patch by Hynek Schlawack.
-
Antoine Pitrou authored
Patch by Hynek Schlawack.
-
Richard Oudkerk authored
In Python 3.2 and earlier, Process.join() and Connection.poll() treated negative timeouts as zero timeouts. Earlier versions from the 3.3 line of development treat them as infinite timeouts. The patch reverts to the old behaviour.
-
Antoine Pitrou authored
-
Antoine Pitrou authored
-
Antoine Pitrou authored
-
Antoine Pitrou authored
-
Antoine Pitrou authored
-
Ezio Melotti authored
-
Ezio Melotti authored
-
Jesus Cea authored
-
Jesus Cea authored
-
- 09 May, 2012 8 commits
-
-
Victor Stinner authored
-
Victor Stinner authored
Optimize also PyUnicode_Format(): call unicode_writer_prepare() only once per argument.
-
Antoine Pitrou authored
-
Antoine Pitrou authored
-
Larry Hastings authored
-
R David Murray authored
-
R David Murray authored
-
Victor Stinner authored
-
- 08 May, 2012 9 commits
-
-
Richard Oudkerk authored
-
Richard Oudkerk authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Larry Hastings authored
-
Larry Hastings authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
explicitly set UnsupportedOperation's module rather than relying on incorrect globals on startup (closes #14745)
-
- 07 May, 2012 2 commits
-
-
Victor Stinner authored
Issue #14716: Change integer overflow check in unicode_writer_prepare() to compute the limit at compile time instead of runtime. Patch writen by Serhiy Storchaka.
-
Mark Dickinson authored
Issue #14742: Don't include DirectoryTestCase from test_unparse in test_tools until we can speed it up.
-