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
1f357418
Kaydet (Commit)
1f357418
authored
May 12, 2019
tarafından
Batuhan Taşkaya
Kaydeden (comit)
Berker Peksag
May 12, 2019
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Integrate flake8 and coverage.py with tox (#141)
Fixes #38
üst
ea4d9da9
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
34 additions
and
8 deletions
+34
-8
.coveragerc
.coveragerc
+8
-0
AUTHORS
AUTHORS
+1
-0
code_gen.py
astor/code_gen.py
+1
-2
rtrip.py
astor/rtrip.py
+1
-1
source_repr.py
astor/source_repr.py
+2
-2
string_repr.py
astor/string_repr.py
+1
-1
requirements-tox.txt
requirements-tox.txt
+2
-0
tox.ini
tox.ini
+18
-2
No files found.
.coveragerc
0 → 100644
Dosyayı görüntüle @
1f357418
[run]
branch = True
omit =
# omit the codegen because of deprecation
astor/codegen.py
.tox/*
[report]
show_missing = True
AUTHORS
Dosyayı görüntüle @
1f357418
...
...
@@ -16,3 +16,4 @@ And with some modifications based on Armin's code:
* Kodi Arfer <git@arfer.net>
* Felix Yan <felixonmars@archlinux.org>
* Chris Rink <chrisrink10@gmail.com>
* Batuhan Taskaya <batuhanosmantaskaya@gmail.com>
astor/code_gen.py
Dosyayı görüntüle @
1f357418
...
...
@@ -23,7 +23,7 @@ import sys
from
.op_util
import
get_op_symbol
,
get_op_precedence
,
Precedence
from
.node_util
import
ExplicitNodeVisitor
from
.string_repr
import
pretty_string
,
string_triplequote_repr
from
.string_repr
import
pretty_string
from
.source_repr
import
pretty_source
...
...
@@ -155,7 +155,6 @@ class SourceGenerator(ExplicitNodeVisitor):
AST
=
ast
.
AST
visit
=
self
.
visit
newline
=
self
.
newline
result
=
self
.
result
append
=
result
.
append
...
...
astor/rtrip.py
Dosyayı görüntüle @
1f357418
...
...
@@ -81,7 +81,7 @@ def convert(srctree, dsttree=dsttree, readonly=False, dumpall=False,
try
:
dsttxt
=
to_source
(
srcast
)
except
:
except
Exception
:
if
not
ignore_exceptions
:
raise
dsttxt
=
''
...
...
astor/source_repr.py
Dosyayı görüntüle @
1f357418
...
...
@@ -101,8 +101,8 @@ def wrap_line(line, maxline=79, result=[], count=count):
pos
=
indent
+
count
(
first
)
indentation
+=
' '
indent
+=
4
if
indent
>=
maxline
/
2
:
maxline
=
maxline
/
2
+
indent
if
indent
>=
maxline
/
2
:
maxline
=
maxline
/
2
+
indent
for
sg
,
nsg
in
zip
(
splittable
,
unsplittable
[
1
:]):
...
...
astor/string_repr.py
Dosyayı görüntüle @
1f357418
...
...
@@ -107,6 +107,6 @@ def pretty_string(s, embedded, current_line, uni_lit=False,
try
:
if
eval
(
fancy
)
==
s
and
'
\r
'
not
in
fancy
:
return
fancy
except
:
except
Exception
:
pass
return
default
requirements-tox.txt
Dosyayı görüntüle @
1f357418
nose>=1.3.0
flake8>=3.7.0
coverage>=4.5.0
tox.ini
Dosyayı görüntüle @
1f357418
[tox]
envlist
=
py27, py34, py35, py36, py37, py38, pypy, pypy3.5
envlist
=
py{27, 34, 35, 36, 37, 38, py, py3.5}
lint
skipsdist
=
True
skip_missing_interpreters
=
true
[testenv]
usedevelop
=
True
commands
=
nosetests -v --nocapture {posargs}
commands
=
coverage run {envbindir}/nosetests -v --nocapture {posargs}
coverage
report
deps
=
-rrequirements-tox.txt
py27,pypy:
unittest2
[testenv:lint]
deps
=
flake8
commands
=
flake8 astor/
[flake8]
ignore
=
E114, E116, E501, W504
[travis]
python
=
3.7:
py37,
lint
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