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
ab824222
Kaydet (Commit)
ab824222
authored
Eyl 27, 2015
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #25011: rlcomplete now omits private and special attribute names unless
the prefix starts with underscores.
üst
8ace8e99
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
51 additions
and
10 deletions
+51
-10
3.6.rst
Doc/whatsnew/3.6.rst
+8
-0
rlcompleter.py
Lib/rlcompleter.py
+25
-10
test_rlcompleter.py
Lib/test/test_rlcompleter.py
+15
-0
NEWS
Misc/NEWS
+3
-0
No files found.
Doc/whatsnew/3.6.rst
Dosyayı görüntüle @
ab824222
...
...
@@ -103,6 +103,14 @@ operator
(Contributed by Joe Jevnik in :issue:`24379`.)
rlcomplete
----------
Private and special attribute names now are omitted unless the prefix starts
with underscores. A space or a colon can be added after completed keyword.
(Contributed by Serhiy Storchaka in :issue:`25011` and :issue:`25209`.)
Optimizations
=============
...
...
Lib/rlcompleter.py
Dosyayı görüntüle @
ab824222
...
...
@@ -142,20 +142,35 @@ class Completer:
return
[]
# get the content of the object, except __builtins__
words
=
dir
(
thisobject
)
if
"__builtins__"
in
words
:
words
.
remove
(
"__builtins__"
)
words
=
set
(
dir
(
thisobject
))
words
.
discard
(
"__builtins__"
)
if
hasattr
(
thisobject
,
'__class__'
):
words
.
a
ppen
d
(
'__class__'
)
words
.
extend
(
get_class_members
(
thisobject
.
__class__
))
words
.
a
d
d
(
'__class__'
)
words
.
update
(
get_class_members
(
thisobject
.
__class__
))
matches
=
[]
n
=
len
(
attr
)
for
word
in
words
:
if
word
[:
n
]
==
attr
and
hasattr
(
thisobject
,
word
):
val
=
getattr
(
thisobject
,
word
)
word
=
self
.
_callable_postfix
(
val
,
"
%
s.
%
s"
%
(
expr
,
word
))
matches
.
append
(
word
)
if
attr
==
''
:
noprefix
=
'_'
elif
attr
==
'_'
:
noprefix
=
'__'
else
:
noprefix
=
None
while
True
:
for
word
in
words
:
if
(
word
[:
n
]
==
attr
and
not
(
noprefix
and
word
[:
n
+
1
]
==
noprefix
)
and
hasattr
(
thisobject
,
word
)):
val
=
getattr
(
thisobject
,
word
)
word
=
self
.
_callable_postfix
(
val
,
"
%
s.
%
s"
%
(
expr
,
word
))
matches
.
append
(
word
)
if
matches
or
not
noprefix
:
break
if
noprefix
==
'_'
:
noprefix
=
'__'
else
:
noprefix
=
None
matches
.
sort
()
return
matches
def
get_class_members
(
klass
):
...
...
Lib/test/test_rlcompleter.py
Dosyayı görüntüle @
ab824222
...
...
@@ -5,6 +5,7 @@ import rlcompleter
class
CompleteMe
:
""" Trivial class used in testing rlcompleter.Completer. """
spam
=
1
_ham
=
2
class
TestRlcompleter
(
unittest
.
TestCase
):
...
...
@@ -51,11 +52,25 @@ class TestRlcompleter(unittest.TestCase):
[
'str.{}('
.
format
(
x
)
for
x
in
dir
(
str
)
if
x
.
startswith
(
's'
)])
self
.
assertEqual
(
self
.
stdcompleter
.
attr_matches
(
'tuple.foospamegg'
),
[])
expected
=
sorted
({
'None.
%
s
%
s'
%
(
x
,
'('
if
x
!=
'__doc__'
else
''
)
for
x
in
dir
(
None
)})
self
.
assertEqual
(
self
.
stdcompleter
.
attr_matches
(
'None.'
),
expected
)
self
.
assertEqual
(
self
.
stdcompleter
.
attr_matches
(
'None._'
),
expected
)
self
.
assertEqual
(
self
.
stdcompleter
.
attr_matches
(
'None.__'
),
expected
)
# test with a customized namespace
self
.
assertEqual
(
self
.
completer
.
attr_matches
(
'CompleteMe.sp'
),
[
'CompleteMe.spam'
])
self
.
assertEqual
(
self
.
completer
.
attr_matches
(
'Completeme.egg'
),
[])
self
.
assertEqual
(
self
.
completer
.
attr_matches
(
'CompleteMe.'
),
[
'CompleteMe.mro('
,
'CompleteMe.spam'
])
self
.
assertEqual
(
self
.
completer
.
attr_matches
(
'CompleteMe._'
),
[
'CompleteMe._ham'
])
matches
=
self
.
completer
.
attr_matches
(
'CompleteMe.__'
)
for
x
in
matches
:
self
.
assertTrue
(
x
.
startswith
(
'CompleteMe.__'
),
x
)
self
.
assertIn
(
'CompleteMe.__name__'
,
matches
)
self
.
assertIn
(
'CompleteMe.__new__('
,
matches
)
CompleteMe
.
me
=
CompleteMe
self
.
assertEqual
(
self
.
completer
.
attr_matches
(
'CompleteMe.me.me.sp'
),
...
...
Misc/NEWS
Dosyayı görüntüle @
ab824222
...
...
@@ -27,6 +27,9 @@ Core and Builtins
Library
-------
- Issue #25011: rlcomplete now omits private and special attribute names unless
the prefix starts with underscores.
- Issue #25209: rlcomplete now can add a space or a colon after completed keyword.
- Issue #22241: timezone.utc name is now plain '
UTC
', not '
UTC
-
00
:
00
'.
...
...
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