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
33a8fb99
Kaydet (Commit)
33a8fb99
authored
May 16, 2016
tarafından
Terry Jan Reedy
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #23977: Tweak IDLE Delegator and its test.
üst
5f4ac9fc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
12 deletions
+23
-12
Delegator.py
Lib/idlelib/Delegator.py
+10
-2
test_delegator.py
Lib/idlelib/idle_test/test_delegator.py
+13
-10
No files found.
Lib/idlelib/Delegator.py
Dosyayı görüntüle @
33a8fb99
class
Delegator
:
# The cache is only used to be able to change delegates!
def
__init__
(
self
,
delegate
=
None
):
self
.
delegate
=
delegate
self
.
__cache
=
set
()
# Cache is used to only remove added attributes
# when changing the delegate.
def
__getattr__
(
self
,
name
):
attr
=
getattr
(
self
.
delegate
,
name
)
# May raise AttributeError
...
...
@@ -13,6 +13,9 @@ class Delegator:
return
attr
def
resetcache
(
self
):
"Removes added attributes while leaving original attributes."
# Function is really about resetting delagator dict
# to original state. Cache is just a means
for
key
in
self
.
__cache
:
try
:
delattr
(
self
,
key
)
...
...
@@ -21,5 +24,10 @@ class Delegator:
self
.
__cache
.
clear
()
def
setdelegate
(
self
,
delegate
):
"Reset attributes and change delegate."
self
.
resetcache
()
self
.
delegate
=
delegate
if
__name__
==
'__main__'
:
from
unittest
import
main
main
(
'idlelib.idle_test.test_delegator'
,
verbosity
=
2
)
Lib/idlelib/idle_test/test_delegator.py
Dosyayı görüntüle @
33a8fb99
...
...
@@ -4,34 +4,37 @@ from idlelib.Delegator import Delegator
class
DelegatorTest
(
unittest
.
TestCase
):
def
test_mydel
(
self
):
#
test a simple use scenario
#
Test a simple use scenario.
#
initialize
#
Initialize an int delegator.
mydel
=
Delegator
(
int
)
self
.
assertIs
(
mydel
.
delegate
,
int
)
self
.
assertEqual
(
mydel
.
_Delegator__cache
,
set
())
# add an attribute:
# Trying to access a non-attribute of int fails.
self
.
assertRaises
(
AttributeError
,
mydel
.
__getattr__
,
'xyz'
)
# Add real int attribute 'bit_length' by accessing it.
bl
=
mydel
.
bit_length
self
.
assertIs
(
bl
,
int
.
bit_length
)
self
.
assertIs
(
mydel
.
__dict__
[
'bit_length'
],
int
.
bit_length
)
self
.
assertEqual
(
mydel
.
_Delegator__cache
,
{
'bit_length'
})
#
add a second attribute
#
Add attribute 'numerator'.
mydel
.
numerator
self
.
assertEqual
(
mydel
.
_Delegator__cache
,
{
'bit_length'
,
'numerator'
})
#
delete the second (which, however, leaves it in the name cache)
#
Delete 'numerator'.
del
mydel
.
numerator
self
.
assertNotIn
(
'numerator'
,
mydel
.
__dict__
)
self
.
assertIn
(
'numerator'
,
mydel
.
_Delegator__cache
)
# The current implementation leaves it in the name cache.
# self.assertIn('numerator', mydel._Delegator__cache)
# However, this is not required and not part of the specification
# reset by calling .setdelegate, which calls .resetcache
mydel
.
setdelegate
(
float
)
self
.
assertIs
(
mydel
.
delegate
,
float
)
# Change delegate to float, first resetting the attributes.
mydel
.
setdelegate
(
float
)
# calls resetcache
self
.
assertNotIn
(
'bit_length'
,
mydel
.
__dict__
)
self
.
assertEqual
(
mydel
.
_Delegator__cache
,
set
())
self
.
assertIs
(
mydel
.
delegate
,
float
)
if
__name__
==
'__main__'
:
unittest
.
main
(
verbosity
=
2
,
exit
=
2
)
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