Home
About
Blog
Products
Forum
Support
Contact
Sunbelt Computer Software
PL/B Language Development and Support
Home
About
Blog
Products
Forum
Support
Contact
ironpython3/Src/StdLib/Lib/importlib/util.py at python-stdlib · cppfool/ironpython3 · GitHub
Skip to content
Navigation Menu
Sign in
Appearance settings
Platform
AI CODE CREATION
GitHub Copilot
Write better code with AI
GitHub Copilot app
Direct agents from issue to merge
MCP Registry
Integrate external tools
DEVELOPER WORKFLOWS
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
Code Quality
Enforce quality at merge
APPLICATION SECURITY
GitHub Advanced Security
Find and fix vulnerabilities
Code security
Secure your code as you build
Secret protection
Stop leaks before they start
EXPLORE
Why GitHub
Documentation
Blog
Changelog
Marketplace
View all features
Solutions
BY COMPANY SIZE
Enterprises
Small and medium teams
Startups
Nonprofits
BY USE CASE
App Modernization
DevSecOps
DevOps
CI/CD
View all use cases
BY INDUSTRY
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
EXPLORE BY TOPIC
AI
Software Development
DevOps
Security
View all topics
EXPLORE BY TYPE
Customer stories
Events & webinars
Ebooks & reports
Business insights
GitHub Skills
SUPPORT & SERVICES
Documentation
Customer support
Community forum
Trust center
Partners
View all resources
Open Source
COMMUNITY
GitHub Sponsors
Fund open source developers
PROGRAMS
Security Lab
Maintainer Community
GitHub Stars
Archive Program
REPOSITORIES
Topics
Trending
Collections
Enterprise
ENTERPRISE SOLUTIONS
Enterprise platform
AI-powered developer platform
AVAILABLE ADD-ONS
GitHub Advanced Security
Enterprise-grade security features
Copilot for Business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Search
/
Sign in
Sign up
Appearance settings
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
cppfool
/
ironpython3
Public
forked from
IronLanguages/ironpython3
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Files
Expand file tree
python-stdlib
Breadcrumbs
ironpython3
/
Src
/
StdLib
/
Lib
/
importlib
/
util.py
Copy path
Blame
More file actions
Blame
More file actions
Latest commit
History
History
History
202 lines (169 loc) · 7.06 KB
python-stdlib
Breadcrumbs
ironpython3
/
Src
/
StdLib
/
Lib
/
importlib
/
util.py
Copy path
Top
File metadata and controls
Code
Blame
202 lines (169 loc) · 7.06 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
"""Utility code for constructing importers, etc."""
from
.
_bootstrap
import
MAGIC_NUMBER
from
.
_bootstrap
import
cache_from_source
from
.
_bootstrap
import
decode_source
from
.
_bootstrap
import
source_from_cache
from
.
_bootstrap
import
spec_from_loader
from
.
_bootstrap
import
spec_from_file_location
from
.
_bootstrap
import
_resolve_name
from
.
_bootstrap
import
_find_spec
from
contextlib
import
contextmanager
import
functools
import
sys
import
warnings
def
resolve_name
(
name
,
package
):
"""Resolve a relative module name to an absolute one."""
if
not
name
.
startswith
(
'.'
):
return
name
elif
not
package
:
raise
ValueError
(
'{!r} is not a relative name '
'(no leading dot)'
.
format
(
name
))
level
=
0
for
character
in
name
:
if
character
!=
'.'
:
break
level
+=
1
return
_resolve_name
(
name
[
level
:],
package
,
level
)
def
_find_spec_from_path
(
name
,
path
=
None
):
"""Return the spec for the specified module.
First, sys.modules is checked to see if the module was already imported. If
so, then sys.modules[name].__spec__ is returned. If that happens to be
set to None, then ValueError is raised. If the module is not in
sys.modules, then sys.meta_path is searched for a suitable spec with the
value of 'path' given to the finders. None is returned if no spec could
be found.
Dotted names do not have their parent packages implicitly imported. You will
most likely need to explicitly import all parent packages in the proper
order for a submodule to get the correct spec.
"""
if
name
not
in
sys
.
modules
:
return
_find_spec
(
name
,
path
)
else
:
module
=
sys
.
modules
[
name
]
if
module
is
None
:
return
None
try
:
spec
=
module
.
__spec__
except
AttributeError
:
raise
ValueError
(
'{}.__spec__ is not set'
.
format
(
name
))
else
:
if
spec
is
None
:
raise
ValueError
(
'{}.__spec__ is None'
.
format
(
name
))
return
spec
def
find_spec
(
name
,
package
=
None
):
"""Return the spec for the specified module.
First, sys.modules is checked to see if the module was already imported. If
so, then sys.modules[name].__spec__ is returned. If that happens to be
set to None, then ValueError is raised. If the module is not in
sys.modules, then sys.meta_path is searched for a suitable spec with the
value of 'path' given to the finders. None is returned if no spec could
be found.
If the name is for submodule (contains a dot), the parent module is
automatically imported.
The name and package arguments work the same as importlib.import_module().
In other words, relative module names (with leading dots) work.
"""
fullname
=
resolve_name
(
name
,
package
)
if
name
.
startswith
(
'.'
)
else
name
if
fullname
not
in
sys
.
modules
:
parent_name
=
fullname
.
rpartition
(
'.'
)[
0
]
if
parent_name
:
# Use builtins.__import__() in case someone replaced it.
parent
=
__import__
(
parent_name
,
fromlist
=
[
'__path__'
])
return
_find_spec
(
fullname
,
parent
.
__path__
)
else
:
return
_find_spec
(
fullname
,
None
)
else
:
module
=
sys
.
modules
[
fullname
]
if
module
is
None
:
return
None
try
:
spec
=
module
.
__spec__
except
AttributeError
:
raise
ValueError
(
'{}.__spec__ is not set'
.
format
(
name
))
else
:
if
spec
is
None
:
raise
ValueError
(
'{}.__spec__ is None'
.
format
(
name
))
return
spec
@
contextmanager
def
_module_to_load
(
name
):
is_reload
=
name
in
sys
.
modules
module
=
sys
.
modules
.
get
(
name
)
if
not
is_reload
:
# This must be done before open() is called as the 'io' module
# implicitly imports 'locale' and would otherwise trigger an
# infinite loop.
module
=
type
(
sys
)(
name
)
# This must be done before putting the module in sys.modules
# (otherwise an optimization shortcut in import.c becomes wrong)
module
.
__initializing__
=
True
sys
.
modules
[
name
]
=
module
try
:
yield
module
except
Exception
:
if
not
is_reload
:
try
:
del
sys
.
modules
[
name
]
except
KeyError
:
pass
finally
:
module
.
__initializing__
=
False
def
set_package
(
fxn
):
"""Set __package__ on the returned module.
This function is deprecated.
"""
@
functools
.
wraps
(
fxn
)
def
set_package_wrapper
(
*
args
,
**
kwargs
):
warnings
.
warn
(
'The import system now takes care of this automatically.'
,
DeprecationWarning
,
stacklevel
=
2
)
module
=
fxn
(
*
args
,
**
kwargs
)
if
getattr
(
module
,
'__package__'
,
None
)
is
None
:
module
.
__package__
=
module
.
__name__
if
not
hasattr
(
module
,
'__path__'
):
module
.
__package__
=
module
.
__package__
.
rpartition
(
'.'
)[
0
]
return
module
return
set_package_wrapper
def
set_loader
(
fxn
):
"""Set __loader__ on the returned module.
This function is deprecated.
"""
@
functools
.
wraps
(
fxn
)
def
set_loader_wrapper
(
self
,
*
args
,
**
kwargs
):
warnings
.
warn
(
'The import system now takes care of this automatically.'
,
DeprecationWarning
,
stacklevel
=
2
)
module
=
fxn
(
self
,
*
args
,
**
kwargs
)
if
getattr
(
module
,
'__loader__'
,
None
)
is
None
:
module
.
__loader__
=
self
return
module
return
set_loader_wrapper
def
module_for_loader
(
fxn
):
"""Decorator to handle selecting the proper module for loaders.
The decorated function is passed the module to use instead of the module
name. The module passed in to the function is either from sys.modules if
it already exists or is a new module. If the module is new, then __name__
is set the first argument to the method, __loader__ is set to self, and
__package__ is set accordingly (if self.is_package() is defined) will be set
before it is passed to the decorated function (if self.is_package() does
not work for the module it will be set post-load).
If an exception is raised and the decorator created the module it is
subsequently removed from sys.modules.
The decorator assumes that the decorated function takes the module name as
the second argument.
"""
warnings
.
warn
(
'The import system now takes care of this automatically.'
,
DeprecationWarning
,
stacklevel
=
2
)
@
functools
.
wraps
(
fxn
)
def
module_for_loader_wrapper
(
self
,
fullname
,
*
args
,
**
kwargs
):
with
_module_to_load
(
fullname
)
as
module
:
module
.
__loader__
=
self
try
:
is_package
=
self
.
is_package
(
fullname
)
except
(
ImportError
,
AttributeError
):
pass
else
:
if
is_package
:
module
.
__package__
=
fullname
else
:
module
.
__package__
=
fullname
.
rpartition
(
'.'
)[
0
]
# If __package__ was not set above, __import__() will do it later.
return
fxn
(
self
,
module
,
*
args
,
**
kwargs
)
return
module_for_loader_wrapper
You can’t perform that action at this time.