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
5d5c63f4
Kaydet (Commit)
5d5c63f4
authored
Mar 19, 2008
tarafından
Eric Smith
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed compiler module so __future__ print_function is compilable.
üst
b89a096d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
2 deletions
+5
-2
consts.py
Lib/compiler/consts.py
+1
-0
future.py
Lib/compiler/future.py
+1
-1
pycodegen.py
Lib/compiler/pycodegen.py
+3
-1
No files found.
Lib/compiler/consts.py
Dosyayı görüntüle @
5d5c63f4
...
...
@@ -19,3 +19,4 @@ CO_GENERATOR_ALLOWED = 0
CO_FUTURE_DIVISION
=
0x2000
CO_FUTURE_ABSIMPORT
=
0x4000
CO_FUTURE_WITH_STATEMENT
=
0x8000
CO_FUTURE_PRINT_FUNCTION
=
0x10000
Lib/compiler/future.py
Dosyayı görüntüle @
5d5c63f4
...
...
@@ -16,7 +16,7 @@ def is_future(stmt):
class
FutureParser
:
features
=
(
"nested_scopes"
,
"generators"
,
"division"
,
"absolute_import"
,
"with_statement"
)
"absolute_import"
,
"with_statement"
,
"print_function"
)
def
__init__
(
self
):
self
.
found
=
{}
# set
...
...
Lib/compiler/pycodegen.py
Dosyayı görüntüle @
5d5c63f4
...
...
@@ -10,7 +10,7 @@ from compiler import pyassem, misc, future, symbols
from
compiler.consts
import
SC_LOCAL
,
SC_GLOBAL
,
SC_FREE
,
SC_CELL
from
compiler.consts
import
(
CO_VARARGS
,
CO_VARKEYWORDS
,
CO_NEWLOCALS
,
CO_NESTED
,
CO_GENERATOR
,
CO_FUTURE_DIVISION
,
CO_FUTURE_ABSIMPORT
,
CO_FUTURE_WITH_STATEMENT
)
CO_FUTURE_ABSIMPORT
,
CO_FUTURE_WITH_STATEMENT
,
CO_FUTURE_PRINT_FUNCTION
)
from
compiler.pyassem
import
TupleArg
# XXX The version-specific code can go, since this code only works with 2.x.
...
...
@@ -218,6 +218,8 @@ class CodeGenerator:
self
.
graph
.
setFlag
(
CO_FUTURE_ABSIMPORT
)
elif
feature
==
"with_statement"
:
self
.
graph
.
setFlag
(
CO_FUTURE_WITH_STATEMENT
)
elif
feature
==
"print_function"
:
self
.
graph
.
setFlag
(
CO_FUTURE_PRINT_FUNCTION
)
def
initClass
(
self
):
"""This method is called once for each class"""
...
...
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