Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
H
happen
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
happen
Commits
b6ac4d3c
Kaydet (Commit)
b6ac4d3c
authored
Nis 01, 2019
tarafından
Batuhan Taşkaya
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
fix recursion problem on example, linting
üst
34306040
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
20 deletions
+15
-20
maybe.py
examples/maybe.py
+9
-12
test.py
examples/test.py
+1
-0
happen.py
happen/happen.py
+5
-8
No files found.
examples/maybe.py
Dosyayı görüntüle @
b6ac4d3c
import
builtins
import
ctypes
import
random
from
happen.happen
import
keyword_patcher
class
Maybe
:
def
__bool__
(
self
):
return
random
.
choice
((
True
,
False
))
def
__repr__
(
self
):
return
f
"Maybe?"
def
__str__
(
self
):
return
repr
(
self
)
Maybe
=
Maybe
()
keyword_patcher
((
'Maybe'
,),
'__main__'
)
keyword_patcher
((
"Maybe"
,),
"__main__"
)
original_isinstance
=
isinstance
def
check
(
a
,
b
):
if
a
is
Maybe
and
b
is
bool
:
return
True
return
isinstance
(
a
,
b
)
builtins
.
isinstance
=
check
return
original_isinstance
(
a
,
b
)
builtins
.
isinstance
=
check
examples/test.py
Dosyayı görüntüle @
b6ac4d3c
from
maybe
import
Maybe
print
(
isinstance
(
Maybe
,
bool
))
print
(
isinstance
(
int
,
bool
))
happen/happen.py
Dosyayı görüntüle @
b6ac4d3c
import
sys
import
ast
import
random
import
sys
class
KeywordListener
(
ast
.
NodeTransformer
):
def
__init__
(
self
,
keywords
,
*
args
,
**
kwargs
):
...
...
@@ -19,18 +20,14 @@ class KeywordListener(ast.NodeTransformer):
return
node
def
keyword_patcher
(
keywords
,
name
,
*
args
,
**
kwargs
):
module
=
__import__
(
name
,
*
args
,
**
kwargs
)
if
module
.
__name__
!=
'__main__'
and
not
hasattr
(
module
,
'__file__'
):
if
module
.
__name__
!=
"__main__"
and
not
hasattr
(
module
,
"__file__"
):
return
module
tree
=
ast
.
parse
(
''
.
join
(
open
(
sys
.
modules
[
name
]
.
__file__
.
replace
(
'pyc'
,
'py'
),
'r'
)
.
readlines
()
)
""
.
join
(
open
(
sys
.
modules
[
name
]
.
__file__
.
replace
(
"pyc"
,
"py"
),
"r"
)
.
readlines
())
)
tree
=
KeywordListener
(
keywords
)
.
visit
(
tree
)
ast
.
fix_missing_locations
(
tree
)
...
...
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