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
2def557a
Kaydet (Commit)
2def557a
authored
Eyl 06, 2006
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
This module was still referencing some dead EXEC related constants.
üst
52318d62
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
symtable.py
Lib/symtable.py
+3
-3
No files found.
Lib/symtable.py
Dosyayı görüntüle @
2def557a
...
...
@@ -4,7 +4,7 @@ import _symtable
from
_symtable
import
USE
,
DEF_GLOBAL
,
DEF_LOCAL
,
DEF_PARAM
,
\
DEF_STAR
,
DEF_DOUBLESTAR
,
DEF_INTUPLE
,
DEF_FREE
,
\
DEF_FREE_GLOBAL
,
DEF_FREE_CLASS
,
DEF_IMPORT
,
DEF_BOUND
,
\
OPT_IMPORT_STAR
,
OPT_EXEC
,
OPT_BARE_EXEC
OPT_IMPORT_STAR
import
weakref
...
...
@@ -94,8 +94,8 @@ class SymbolTable:
return
bool
(
self
.
_table
.
children
)
def
has_exec
(
self
):
"""Return true if the scope uses exec"""
return
bool
(
self
.
_table
.
optimized
&
(
OPT_EXEC
|
OPT_BARE_EXEC
))
"""Return true if the scope uses exec
. Deprecated method.
"""
return
False
def
has_import_star
(
self
):
"""Return true if the scope uses import *"""
...
...
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