Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
2f92389d
Kaydet (Commit)
2f92389d
authored
Nis 21, 2012
tarafından
Brett Cannon
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Don't worry about moving imp.get_tag() over to Lib/imp.py.
üst
b582c923
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
3 deletions
+5
-3
imp.py
Lib/imp.py
+2
-2
_bootstrap.py
Lib/importlib/_bootstrap.py
+3
-1
importlib.h
Python/importlib.h
+0
-0
No files found.
Lib/imp.py
Dosyayı görüntüle @
2f92389d
...
...
@@ -11,9 +11,9 @@ from _imp import (lock_held, acquire_lock, release_lock, reload,
init_builtin
,
init_frozen
,
is_builtin
,
is_frozen
,
_fix_co_filename
)
# Could move out of _imp, but not worth the code
from
_imp
import
get_magic
from
_imp
import
get_magic
,
get_tag
# Can (probably) move to importlib
from
_imp
import
(
get_tag
,
get_suffixes
)
from
_imp
import
get_suffixes
# Should be re-implemented here (and mostly deprecated)
from
_imp
import
(
find_module
,
NullImporter
,
SEARCH_ERROR
,
PY_SOURCE
,
PY_COMPILED
,
C_EXTENSION
,
...
...
Lib/importlib/_bootstrap.py
Dosyayı görüntüle @
2f92389d
...
...
@@ -201,7 +201,7 @@ def _cache_from_source(path, debug_override=None):
suffix
=
DEBUG_BYTECODE_SUFFIX
if
debug
else
OPT_BYTECODE_SUFFIX
head
,
tail
=
_path_split
(
path
)
base_filename
,
sep
,
_
=
tail
.
partition
(
'.'
)
filename
=
''
.
join
([
base_filename
,
sep
,
_
imp
.
get_tag
()
,
suffix
])
filename
=
''
.
join
([
base_filename
,
sep
,
_
TAG
,
suffix
])
return
_path_join
(
head
,
PYCACHE
,
filename
)
...
...
@@ -1148,6 +1148,7 @@ def __import__(name, globals={}, locals={}, fromlist=[], level=0):
_MAGIC_NUMBER
=
None
# Set in _setup()
_TAG
=
None
# Set in _setup()
def
_setup
(
sys_module
,
_imp_module
):
...
...
@@ -1197,6 +1198,7 @@ def _setup(sys_module, _imp_module):
# Constants
setattr
(
self_module
,
'_relax_case'
,
_make_relax_case
())
setattr
(
self_module
,
'_MAGIC_NUMBER'
,
_imp_module
.
get_magic
())
setattr
(
self_module
,
'_TAG'
,
_imp
.
get_tag
())
if
builtin_os
==
'nt'
:
SOURCE_SUFFIXES
.
append
(
'.pyw'
)
...
...
Python/importlib.h
Dosyayı görüntüle @
2f92389d
This diff is collapsed.
Click to expand 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