Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
A
astor
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
astor
Commits
c5d5b3cd
Kaydet (Commit)
c5d5b3cd
authored
May 12, 2019
tarafından
esupoff
Kaydeden (comit)
Berker Peksag
May 12, 2019
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix TypeError when accessing TreeWalk().__dict__ (#137)
Fixes #136
üst
70b5924e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
22 additions
and
0 deletions
+22
-0
tree_walk.py
astor/tree_walk.py
+3
-0
changelog.rst
docs/changelog.rst
+7
-0
test_misc.py
tests/test_misc.py
+12
-0
No files found.
astor/tree_walk.py
Dosyayı görüntüle @
c5d5b3cd
...
...
@@ -30,6 +30,9 @@ class MetaFlatten(type):
if
base
not
in
newbases
:
newdict
.
update
(
vars
(
base
))
newdict
.
update
(
clsdict
)
# These are class-bound, we should let Python recreate them.
newdict
.
pop
(
'__dict__'
,
None
)
newdict
.
pop
(
'__weakref__'
,
None
)
# Delegate the real work to type
return
type
.
__new__
(
clstype
,
name
,
newbases
,
newdict
)
...
...
docs/changelog.rst
Dosyayı görüntüle @
c5d5b3cd
...
...
@@ -53,6 +53,13 @@ Bug fixes
.. _`Issue 127`: https://github.com/berkerpeksag/astor/issues/127
.. _`PR 130`: https://github.com/berkerpeksag/astor/pull/130
* Fixed :class:`astor.tree_walk.TreeWalk` when attempting to access attributes
created by Python's type system (such as ``__dict__`` and ``__weakref__``)
(Reported and fixed by esupoff in `Issue 136`_ and `PR 137`_.)
.. _`Issue 136`: https://github.com/berkerpeksag/astor/issues/136
.. _`PR 137`: https://github.com/berkerpeksag/astor/pull/137
0.7.1 - 2018-07-06
------------------
...
...
tests/test_misc.py
Dosyayı görüntüle @
c5d5b3cd
...
...
@@ -64,5 +64,17 @@ class FastCompareTestCase(unittest.TestCase):
check
(
'a = 3 - (3, 4, 5)'
,
'a = 3 - (3, 4, 6)'
)
class
TreeWalkTestCase
(
unittest
.
TestCase
):
def
test_auto_generated_attributes
(
self
):
# See #136 for more details.
treewalk
=
astor
.
TreeWalk
()
self
.
assertIsInstance
(
treewalk
.
__dict__
,
dict
)
# Check that the inital state of the instance is empty.
self
.
assertEqual
(
treewalk
.
__dict__
[
'nodestack'
],
[])
self
.
assertEqual
(
treewalk
.
__dict__
[
'pre_handlers'
],
{})
self
.
assertEqual
(
treewalk
.
__dict__
[
'post_handlers'
],
{})
if
__name__
==
'__main__'
:
unittest
.
main
()
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