Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
P
pepallow
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)
9
Konular (issue)
9
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
pepallow
Commits
b749ee14
Kaydet (Commit)
b749ee14
authored
Nis 07, 2019
tarafından
Batuhan Taşkaya
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Add new test cases, examples and pep276 to readme
üst
9a255657
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
41 additions
and
2 deletions
+41
-2
README.md
README.md
+1
-0
example.py
examples/example.py
+18
-1
test_pepallow.py
tests/test_pepallow.py
+22
-1
No files found.
README.md
Dosyayı görüntüle @
b749ee14
...
...
@@ -4,6 +4,7 @@ See what happens if a pep was accepted.
## Supporteds
-
PEP211
-
PEP231
-
PEP276
-
PEP313
## Demo
[
![asciicast
](
https://asciinema.org/a/239257.svg
)
](https://asciinema.org/a/239257)
...
...
examples/example.py
Dosyayı görüntüle @
b749ee14
...
...
@@ -4,15 +4,32 @@ from pepallow.peps.p231 import AssetBean as Bean
with
Allow
(
211
):
s
=
[
1
,
2
,
3
]
t
=
"abc"
product
=
[]
counter
=
0
for
i
,
j
in
s
@
t
:
print
(
f
"{i}{j}"
)
product
.
append
(
f
"{i}{j}"
)
counter
+=
1
assert
counter
==
9
assert
product
==
[
'1a'
,
'1b'
,
'1c'
,
'2a'
,
'2b'
,
'2c'
,
'3a'
,
'3b'
,
'3c'
]
with
Allow
(
231
):
b
=
Bean
(
3
)
assert
b
.
foo
==
3
b
.
foo
=
4
assert
b
.
foo
==
4
with
Allow
(
276
):
counter
=
0
items
=
[]
for
number
in
10
:
items
.
append
(
number
)
counter
+=
1
assert
counter
==
10
assert
sum
(
items
)
==
45
with
Allow
(
313
):
assert
IV
+
I
==
V
assert
VI
+
M
==
1006
...
...
tests/test_pepallow.py
Dosyayı görüntüle @
b749ee14
...
...
@@ -4,7 +4,17 @@ from pepallow.peps.p231 import AssetBean as Bean
def
test_pep211
():
with
Allow
(
211
):
pass
s
=
[
1
,
2
,
3
]
t
=
"abc"
product
=
[]
counter
=
0
for
i
,
j
in
s
@
t
:
product
.
append
(
f
"{i}{j}"
)
counter
+=
1
assert
counter
==
9
assert
product
==
[
'1a'
,
'1b'
,
'1c'
,
'2a'
,
'2b'
,
'2c'
,
'3a'
,
'3b'
,
'3c'
]
def
test_pep231
():
...
...
@@ -14,6 +24,17 @@ def test_pep231():
b
.
foo
=
4
assert
b
.
foo
==
4
def
test_pep276
():
with
Allow
(
276
):
counter
=
0
items
=
[]
for
number
in
10
:
items
.
append
(
number
)
counter
+=
1
assert
counter
==
10
assert
sum
(
items
)
==
45
def
test_pep313
():
with
Allow
(
313
):
assert
IV
+
I
==
V
...
...
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