Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
e337a40d
Commit
e337a40d
authored
Jan 04, 2014
by
Eric Snow
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #19713: Move away from using find_module/load_module.
parent
14f0c4f6
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
5 deletions
+12
-5
Lib/test/test_tools.py
Lib/test/test_tools.py
+5
-4
Misc/NEWS
Misc/NEWS
+2
-0
setup.py
setup.py
+5
-1
No files found.
Lib/test/test_tools.py
View file @
e337a40d
...
@@ -6,6 +6,7 @@ Tools directory of a Python checkout or tarball, such as reindent.py.
...
@@ -6,6 +6,7 @@ Tools directory of a Python checkout or tarball, such as reindent.py.
import
os
import
os
import
sys
import
sys
import
importlib._bootstrap
import
importlib.machinery
import
importlib.machinery
import
unittest
import
unittest
from
unittest
import
mock
from
unittest
import
mock
...
@@ -405,8 +406,8 @@ class PdepsTests(unittest.TestCase):
...
@@ -405,8 +406,8 @@ class PdepsTests(unittest.TestCase):
@
classmethod
@
classmethod
def
setUpClass
(
self
):
def
setUpClass
(
self
):
path
=
os
.
path
.
join
(
scriptsdir
,
'pdeps.py'
)
path
=
os
.
path
.
join
(
scriptsdir
,
'pdeps.py'
)
loader
=
importlib
.
machinery
.
SourceFileLoader
(
'pdeps'
,
path
)
spec
=
importlib
.
util
.
spec_from_file_location
(
'pdeps'
,
path
)
self
.
pdeps
=
loader
.
load_module
()
self
.
pdeps
=
importlib
.
_bootstrap
.
_SpecMethods
(
spec
).
load
()
@
classmethod
@
classmethod
def
tearDownClass
(
self
):
def
tearDownClass
(
self
):
...
@@ -430,8 +431,8 @@ class Gprof2htmlTests(unittest.TestCase):
...
@@ -430,8 +431,8 @@ class Gprof2htmlTests(unittest.TestCase):
def
setUp
(
self
):
def
setUp
(
self
):
path
=
os
.
path
.
join
(
scriptsdir
,
'gprof2html.py'
)
path
=
os
.
path
.
join
(
scriptsdir
,
'gprof2html.py'
)
loader
=
importlib
.
machinery
.
SourceFileLoader
(
'gprof2html'
,
path
)
spec
=
importlib
.
util
.
spec_from_file_location
(
'gprof2html'
,
path
)
self
.
gprof
=
loader
.
load_module
()
self
.
gprof
=
importlib
.
_bootstrap
.
_SpecMethods
(
spec
).
load
()
oldargv
=
sys
.
argv
oldargv
=
sys
.
argv
def
fixup
():
def
fixup
():
sys
.
argv
=
oldargv
sys
.
argv
=
oldargv
...
...
Misc/NEWS
View file @
e337a40d
...
@@ -255,6 +255,8 @@ Library
...
@@ -255,6 +255,8 @@ Library
- Issue #6477: Added support for pickling the types of built-in singletons
- Issue #6477: Added support for pickling the types of built-in singletons
(i.e., Ellipsis, NotImplemented, None).
(i.e., Ellipsis, NotImplemented, None).
- Issue #19713: Move away from using find_module/load_module.
- Issue #19851: Fixed a regression in reloading sub-modules.
- Issue #19851: Fixed a regression in reloading sub-modules.
- ssl.create_default_context() sets OP_NO_COMPRESSION to prevent CRIME.
- ssl.create_default_context() sets OP_NO_COMPRESSION to prevent CRIME.
...
...
setup.py
View file @
e337a40d
...
@@ -3,6 +3,8 @@
...
@@ -3,6 +3,8 @@
import
sys
,
os
,
importlib
.
machinery
,
re
,
optparse
import
sys
,
os
,
importlib
.
machinery
,
re
,
optparse
from
glob
import
glob
from
glob
import
glob
import
importlib._bootstrap
import
importlib.util
import
sysconfig
import
sysconfig
from
distutils
import
log
from
distutils
import
log
...
@@ -327,8 +329,10 @@ class PyBuildExt(build_ext):
...
@@ -327,8 +329,10 @@ class PyBuildExt(build_ext):
return
return
loader
=
importlib
.
machinery
.
ExtensionFileLoader
(
ext
.
name
,
ext_filename
)
loader
=
importlib
.
machinery
.
ExtensionFileLoader
(
ext
.
name
,
ext_filename
)
spec
=
importlib
.
util
.
spec_from_file_location
(
ext
.
name
,
ext_filename
,
loader
=
loader
)
try
:
try
:
loader
.
load_module
()
importlib
.
_bootstrap
.
_SpecMethods
(
spec
).
load
()
except
ImportError
as
why
:
except
ImportError
as
why
:
self
.
failed
.
append
(
ext
.
name
)
self
.
failed
.
append
(
ext
.
name
)
self
.
announce
(
'*** WARNING: renaming "%s" since importing it'
self
.
announce
(
'*** WARNING: renaming "%s" since importing it'
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment