Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
catlizor
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
catlizor
Commits
113fa7b2
Kaydet (Commit)
113fa7b2
authored
Şub 28, 2019
tarafından
Batuhan Taşkaya
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
optimize resetting
üst
843ce2c1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
catlizor.py
catlizor/catlizor.py
+6
-6
No files found.
catlizor/catlizor.py
Dosyayı görüntüle @
113fa7b2
from
__future__
import
annotations
from
collections.abc
import
Sequence
as
SequenceBase
from
contextlib
import
contextmanager
from
contextlib
import
contextmanager
,
suppress
from
dataclasses
import
dataclass
,
field
from
enum
import
Enum
,
auto
from
functools
import
partial
,
reduce
,
wraps
...
...
@@ -113,9 +113,8 @@ class Catlizor:
for
spec
in
hook_spec
.
values
():
for
meth
in
spec
[
0
]:
try
:
func
=
getattr
(
self
.
klass
,
meth
)
catlized_methods
.
add
(
func
)
setattr
(
self
.
klass
,
meth
,
catlizor_wrapper
(
func
))
setattr
(
self
.
klass
,
meth
,
catlizor_wrapper
(
getattr
(
self
.
klass
,
meth
)))
catlized_methods
.
add
(
meth
)
except
AttributeError
as
exc
:
raise
Exception
(
f
"Class doesnt have a method named {meth}"
)
from
exc
...
...
@@ -173,5 +172,6 @@ class Catlizor:
return
result
def
reset
(
self
):
for
func
in
getattr
(
self
.
klass
,
CATLIZOR_SIGN
):
setattr
(
self
.
klass
,
func
.
__name__
,
func
)
for
meth
in
getattr
(
self
.
klass
,
CATLIZOR_SIGN
):
with
suppress
(
AttributeError
):
setattr
(
self
.
klass
,
meth
,
getattr
(
self
.
klass
,
meth
)
.
__wrapped__
)
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