index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Python
/
importlib.h
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
|
Rename importlib.util.ModuleManager to module_to_load so that the name
Brett Cannon
2013-05-30
1
-3509/+3522
*
|
Issue #18070: importlib.util.module_for_loader() now sets __loader__
Brett Cannon
2013-05-28
1
-3432/+3413
*
|
Update importlib.h
Brett Cannon
2013-05-28
1
-2676/+2675
*
|
Introduce importlib.util.ModuleManager which is a context manager to
Brett Cannon
2013-05-28
1
-3328/+3400
*
|
rather than passing locals to the class body, just execute the class body in ...
Benjamin Peterson
2013-05-16
1
-3131/+3121
*
|
hide the __class__ closure from the class body (#12370)
Benjamin Peterson
2013-05-15
1
-119/+119
*
|
#17115,17116: Have modules initialize the __package__ and __loader__
Brett Cannon
2013-05-04
1
-181/+182
*
|
check local class namespace before reaching for cells (closes #17853)
Benjamin Peterson
2013-04-30
1
-119/+119
*
|
Issue #17244: Don't mask exceptions raised during the creation of
Brett Cannon
2013-04-14
1
-3467/+3479
*
|
Issue #17093,17566,17567: Methods from classes in importlib.abc now raise/return
Brett Cannon
2013-04-09
1
-1769/+1776
*
|
merge
Brett Cannon
2013-04-01
1
-3448/+3457
|
\
\
|
|
/
|
*
Issue #17357: Add missing verbosity messages when running under
Brett Cannon
2013-04-01
1
-4268/+4281
*
|
update importlib.h
Benjamin Peterson
2013-03-27
1
-117/+117
*
|
copy 2.7 magic numbers for historical interest
Benjamin Peterson
2013-03-22
1
-4092/+3158
*
|
make some freezing related stuff const
Benjamin Peterson
2013-03-13
1
-1/+1
*
|
Issue #17117: Have both import itself and importlib.util.set_loader()
Brett Cannon
2013-03-13
1
-3325/+3320
*
|
Issue #17220: two fixes for changeset 2528e4aea338.
Brett Cannon
2013-02-25
1
-4190/+4192
*
|
Issue #17220: Little cleanup of _bootstrap.py.
Serhiy Storchaka
2013-02-25
1
-4314/+4296
*
|
Merge importlib.h rebuild from 3.3 after the changes introduced in 65eaac000147.
Ezio Melotti
2013-02-20
1
-1087/+1084
|
\
\
|
|
/
|
*
Rebuild importlib.h after the changes introduced in 0f65bf6063ca.
Ezio Melotti
2013-02-20
1
-1092/+1089
*
|
evaluate lambda keyword-only defaults after positional defaults (#16967 again)
Benjamin Peterson
2013-02-10
1
-1/+1
*
|
evaluate positional defaults before keyword-only defaults (closes #16967)
Benjamin Peterson
2013-02-10
1
-119/+119
*
|
Merge w/ 3.3 more fixes thanks to issue #17098
Brett Cannon
2013-02-01
1
-269/+282
|
\
\
|
|
/
|
*
Issue #17098: Be more stringent of setting __loader__ on early imported
Brett Cannon
2013-02-01
1
-292/+299
|
*
Issue #17098: Make sure every module has __loader__ defined.
Brett Cannon
2013-02-01
1
-283/+289
*
|
Tweak an exception message
Brett Cannon
2013-01-27
1
-2943/+2943
*
|
Port py_compile over to importlib
Brett Cannon
2013-01-26
1
-4269/+4295
*
|
Touch up exception messaging
Brett Cannon
2013-01-25
1
-2921/+2923
*
|
Issue #15031: Refactor some code in importlib pertaining to validating
Brett Cannon
2013-01-11
1
-4226/+4262
*
|
Merge from 3.3 for fix for issue #16730
Brett Cannon
2013-01-11
1
-938/+941
|
\
\
|
|
/
|
*
Issue #16730: Don't raise an exception in
Brett Cannon
2013-01-11
1
-943/+946
*
|
Replace IOError with OSError (#16715)
Andrew Svetlov
2012-12-25
1
-2/+2
*
|
update importlib.h
Benjamin Peterson
2012-12-19
1
-2633/+2632
*
|
Issue #16706: get rid of os.error
Andrew Svetlov
2012-12-18
1
-4034/+3999
*
|
Issue #15627: This is simply an update to the name of a new method recently a...
Eric Snow
2012-12-05
1
-8/+8
*
|
- Issue #16514: Fix regression causing a traceback when sys.path[0] is None
Barry Warsaw
2012-11-20
1
-63/+67
|
\
\
|
|
/
|
*
- Issue #16514: Fix regression causing a traceback when sys.path[0] is None
Barry Warsaw
2012-11-20
1
-63/+67
*
|
Regen importlib.h
Brett Cannon
2012-11-18
1
-2170/+2173
*
|
Issue #15627: Add the compile_source() method to
Brett Cannon
2012-11-18
1
-2327/+2347
*
|
merge 3.3 (sort of)
Benjamin Peterson
2012-11-12
1
-1532/+1532
|
\
\
|
|
/
|
*
recompile importlib.h
Benjamin Peterson
2012-11-12
1
-1543/+1543
*
|
Merge fix from #6074 from 3.3
Nick Coghlan
2012-10-19
1
-1876/+1877
|
\
\
|
|
/
|
*
Issue #6074: Apply an appropriate fix for importlib based imports
Nick Coghlan
2012-10-19
1
-1884/+1885
*
|
Merge issue #15833: don't raise an exception if importlib can't write
Trent Nelson
2012-10-16
1
-1833/+1840
|
\
\
|
|
/
|
*
Issue #15833: don't raise an exception if importlib can't write byte-compiled
Trent Nelson
2012-10-16
1
-1839/+1845
*
|
Remove uses of % with str.format.
Brett Cannon
2012-10-12
1
-3746/+3748
*
|
Merge fix for issue #15111.
Brett Cannon
2012-10-10
1
-460/+464
|
\
\
|
|
/
|
*
Closes issue #15111: Calling __import__ with a module specified in
Brett Cannon
2012-10-10
1
-467/+471
*
|
Closes #16135: Removal of OS/2 support
Jesus Cea
2012-10-05
1
-108/+102
|
/
*
Add some comments.
Brett Cannon
2012-09-28
1
-3476/+3475
[prev]
[next]