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
d3243d8d
Kaydet (Commit)
d3243d8d
authored
Tem 02, 2009
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
test that compile() accepts the future flag
üst
fbba7cdc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
test___future__.py
Lib/test/test___future__.py
+3
-0
No files found.
Lib/test/test___future__.py
Dosyayı görüntüle @
d3243d8d
...
...
@@ -53,9 +53,12 @@ class FutureTest(unittest.TestCase):
a
(
hasattr
(
value
,
"compiler_flag"
),
"feature is missing a .compiler_flag attr"
)
# Make sure the compile accepts the flag.
compile
(
""
,
"<test>"
,
"exec"
,
value
.
compiler_flag
)
a
(
isinstance
(
getattr
(
value
,
"compiler_flag"
),
int
),
".compiler_flag isn't int"
)
def
test_main
():
test_support
.
run_unittest
(
FutureTest
)
...
...
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