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
ab61dce0
Kaydet (Commit)
ab61dce0
authored
Mar 06, 2008
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Bug #2220: handle rlcompleter attribute match failure more gracefully.
(backport from r61275)
üst
0e305557
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
rlcompleter.py
Lib/rlcompleter.py
+1
-1
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/rlcompleter.py
Dosyayı görüntüle @
ab61dce0
...
@@ -125,7 +125,7 @@ class Completer:
...
@@ -125,7 +125,7 @@ class Completer:
import
re
import
re
m
=
re
.
match
(
r"(\w+(\.\w+)*)\.(\w*)"
,
text
)
m
=
re
.
match
(
r"(\w+(\.\w+)*)\.(\w*)"
,
text
)
if
not
m
:
if
not
m
:
return
return
[]
expr
,
attr
=
m
.
group
(
1
,
3
)
expr
,
attr
=
m
.
group
(
1
,
3
)
object
=
eval
(
expr
,
self
.
namespace
)
object
=
eval
(
expr
,
self
.
namespace
)
words
=
dir
(
object
)
words
=
dir
(
object
)
...
...
Misc/NEWS
Dosyayı görüntüle @
ab61dce0
...
@@ -15,6 +15,8 @@ Core and builtins
...
@@ -15,6 +15,8 @@ Core and builtins
Library
Library
-------
-------
- Bug #2220: handle rlcompleter attribute match failure more gracefully.
- Bug #1725737: In distutil'
s
sdist
,
exclude
RCS
,
CVS
etc
.
also
in
the
- Bug #1725737: In distutil'
s
sdist
,
exclude
RCS
,
CVS
etc
.
also
in
the
root
directory
,
and
also
exclude
.
hg
,
.
git
,
.
bzr
,
and
_darcs
.
root
directory
,
and
also
exclude
.
hg
,
.
git
,
.
bzr
,
and
_darcs
.
...
...
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