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
62adc55a
Kaydet (Commit)
62adc55a
authored
Eki 23, 2017
tarafından
Christoph Sarnowski
Kaydeden (comit)
Berker Peksag
Eki 23, 2017
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-30722: Make redemo work with Python 3.6+ (GH-2311)
üst
66caacf2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
2 deletions
+10
-2
2017-10-23-19-45-52.bpo-30722.ioRlAu.rst
...next/Tools-Demos/2017-10-23-19-45-52.bpo-30722.ioRlAu.rst
+9
-0
redemo.py
Tools/demo/redemo.py
+1
-2
No files found.
Misc/NEWS.d/next/Tools-Demos/2017-10-23-19-45-52.bpo-30722.ioRlAu.rst
0 → 100644
Dosyayı görüntüle @
62adc55a
Make redemo work with Python 3.6 and newer versions.
In Python 3.6, flags like re.DOTALL became members of an enum.IntFlag so
usages like ``getattr(re, 'DOTALL')`` are invalid.
Also, remove the ``LOCALE`` option since it doesn't work with string
patterns in Python 3.
Patch by Christoph Sarnowski.
Tools/demo/redemo.py
Dosyayı görüntüle @
62adc55a
...
...
@@ -75,7 +75,6 @@ class ReDemo:
self
.
boxes
=
[]
self
.
vars
=
[]
for
name
in
(
'IGNORECASE'
,
'LOCALE'
,
'MULTILINE'
,
'DOTALL'
,
'VERBOSE'
):
...
...
@@ -83,7 +82,7 @@ class ReDemo:
frame
=
Frame
(
self
.
master
)
frame
.
pack
(
fill
=
X
)
self
.
frames
.
append
(
frame
)
val
=
getattr
(
re
,
name
)
val
=
getattr
(
re
,
name
)
.
value
var
=
IntVar
()
box
=
Checkbutton
(
frame
,
variable
=
var
,
text
=
name
,
...
...
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