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
092b3cf6
Kaydet (Commit)
092b3cf6
authored
Tem 02, 2014
tarafından
Terry Jan Reedy
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
More idlelib cleanup inspired by pyflakes.
üst
d9de794c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
SearchEngine.py
Lib/idlelib/SearchEngine.py
+1
-1
StackViewer.py
Lib/idlelib/StackViewer.py
+2
-2
test_textview.py
Lib/idlelib/idle_test/test_textview.py
+2
-2
No files found.
Lib/idlelib/SearchEngine.py
Dosyayı görüntüle @
092b3cf6
...
...
@@ -85,7 +85,7 @@ class SearchEngine:
except
re
.
error
as
what
:
args
=
what
.
args
msg
=
args
[
0
]
col
=
arg
[
1
]
if
len
(
args
)
>=
2
else
-
1
col
=
arg
s
[
1
]
if
len
(
args
)
>=
2
else
-
1
self
.
report_error
(
pat
,
msg
,
col
)
return
None
return
prog
...
...
Lib/idlelib/StackViewer.py
Dosyayı görüntüle @
092b3cf6
...
...
@@ -131,8 +131,8 @@ def _stack_viewer(parent):
root
.
geometry
(
"+
%
d+
%
d"
%
(
x
,
y
+
150
))
flist
=
PyShellFileList
(
root
)
try
:
# to obtain a traceback object
a
except
:
intentional_name_error
except
NameError
:
exc_type
,
exc_value
,
exc_tb
=
sys
.
exc_info
()
# inject stack trace to sys
...
...
Lib/idlelib/idle_test/test_textview.py
Dosyayı görüntüle @
092b3cf6
...
...
@@ -12,7 +12,7 @@ requires('gui')
import
unittest
import
os
from
tkinter
import
Tk
,
Text
,
TclError
from
tkinter
import
Tk
from
idlelib
import
textView
as
tv
from
idlelib.idle_test.mock_idle
import
Func
from
idlelib.idle_test.mock_tk
import
Mbox
...
...
@@ -23,7 +23,7 @@ def setUpModule():
def
tearDownModule
():
global
root
root
.
destroy
()
root
.
destroy
()
# pyflakes falsely sees root as undefined
del
root
...
...
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