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
415ed937
Kaydet (Commit)
415ed937
authored
Şub 27, 2006
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Skip over doc strings.
üst
b9eb5510
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletion
+10
-1
future.py
Lib/compiler/future.py
+8
-1
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/compiler/future.py
Dosyayı görüntüle @
415ed937
...
...
@@ -22,7 +22,14 @@ class FutureParser:
def
visitModule
(
self
,
node
):
stmt
=
node
.
node
found_docstring
=
False
for
s
in
stmt
.
nodes
:
# Skip over docstrings
if
not
found_docstring
and
isinstance
(
s
,
ast
.
Discard
)
\
and
isinstance
(
s
.
expr
,
ast
.
Const
)
\
and
isinstance
(
s
.
expr
.
value
,
str
):
found_docstring
=
True
continue
if
not
self
.
check_stmt
(
s
):
break
...
...
@@ -50,7 +57,7 @@ class BadFutureParser:
return
if
node
.
modname
!=
"__future__"
:
return
raise
SyntaxError
,
"invalid future statement
"
raise
SyntaxError
,
"invalid future statement
"
+
repr
(
node
)
def
find_futures
(
node
):
p1
=
FutureParser
()
...
...
Misc/NEWS
Dosyayı görüntüle @
415ed937
...
...
@@ -393,6 +393,8 @@ Extension Modules
Library
-------
-
The
compiler
package
now
supports
future
imports
after
the
module
docstring
.
-
Bug
#
1413790
:
zipfile
now
sanitizes
absolute
archive
names
that
are
not
allowed
by
the
specs
.
...
...
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