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
08797e1d
Kaydet (Commit)
08797e1d
authored
Nis 07, 2019
tarafından
Batuhan Taşkaya
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
add example
üst
f8622cff
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
20 additions
and
6 deletions
+20
-6
README.md
README.md
+1
-0
example.py
examples/example.py
+17
-0
setup.py
setup.py
+1
-1
test_pepallow.py
tests/test_pepallow.py
+1
-5
No files found.
README.md
Dosyayı görüntüle @
08797e1d
# PEPAllow
![
pepalllow
](
pepallow.png
)
See what happens if a pep was accepted.
## Supporteds
-
PEP211
...
...
examples/example.py
0 → 100644
Dosyayı görüntüle @
08797e1d
from
pepallow.allow
import
Allow
from
pepallow.peps.p231
import
AssetBean
as
Bean
with
Allow
(
211
):
pass
with
Allow
(
231
):
b
=
Bean
(
3
)
assert
b
.
foo
==
3
b
.
foo
=
4
assert
b
.
foo
==
4
with
Allow
(
313
):
assert
IV
+
I
==
V
assert
VI
+
M
==
1006
assert
(
M
-
D
)
+
VI
-
X
==
(
500
)
+
6
-
10
setup.py
Dosyayı görüntüle @
08797e1d
...
...
@@ -8,7 +8,7 @@ with open(current_dir / "README.md", encoding="utf-8") as f:
setup
(
name
=
"pepallow"
,
version
=
"0.1.
1
"
,
version
=
"0.1.
2
"
,
packages
=
find_packages
(),
url
=
"https://github.com/abstractequalsmagic/pepallow"
,
description
=
"Hack the interpreter for running rejected pep's changes."
,
...
...
tests/test_pepallow.py
Dosyayı görüntüle @
08797e1d
...
...
@@ -4,11 +4,7 @@ from pepallow.peps.p231 import AssetBean as Bean
def
test_pep211
():
with
Allow
(
211
):
assert
IV
==
4
assert
M
==
1000
assert
(
M
-
D
)
+
VI
==
506
with
pytest
.
raises
(
AssertionError
):
assert
VI
==
5
pass
def
test_pep231
():
...
...
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