Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
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
cpython
Commits
08f127a3
Unverified
Kaydet (Commit)
08f127a3
authored
Haz 15, 2018
tarafından
Serhiy Storchaka
Kaydeden (comit)
GitHub
Haz 15, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-33851: Fix ast.get_docstring() for a node that lacks a docstring. (GH-7682)
üst
9e7c9219
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
34 additions
and
2 deletions
+34
-2
ast.py
Lib/ast.py
+2
-2
test_ast.py
Lib/test/test_ast.py
+31
-0
2018-06-13-15-12-25.bpo-33851.SVbqlz.rst
...S.d/next/Library/2018-06-13-15-12-25.bpo-33851.SVbqlz.rst
+1
-0
No files found.
Lib/ast.py
Dosyayı görüntüle @
08f127a3
...
...
@@ -206,7 +206,7 @@ def get_docstring(node, clean=True):
"""
if
not
isinstance
(
node
,
(
AsyncFunctionDef
,
FunctionDef
,
ClassDef
,
Module
)):
raise
TypeError
(
"
%
r can't have docstrings"
%
node
.
__class__
.
__name__
)
if
not
node
.
body
:
if
not
(
node
.
body
and
isinstance
(
node
.
body
[
0
],
Expr
))
:
return
None
node
=
node
.
body
[
0
]
.
value
if
isinstance
(
node
,
Str
):
...
...
@@ -215,7 +215,7 @@ def get_docstring(node, clean=True):
text
=
node
.
value
else
:
return
None
if
clean
and
text
:
if
clean
:
import
inspect
text
=
inspect
.
cleandoc
(
text
)
return
text
...
...
Lib/test/test_ast.py
Dosyayı görüntüle @
08f127a3
...
...
@@ -521,13 +521,44 @@ class ASTHelpers_Test(unittest.TestCase):
)
def
test_get_docstring
(
self
):
node
=
ast
.
parse
(
'"""line one
\n
line two"""'
)
self
.
assertEqual
(
ast
.
get_docstring
(
node
),
'line one
\n
line two'
)
node
=
ast
.
parse
(
'class foo:
\n
"""line one
\n
line two"""'
)
self
.
assertEqual
(
ast
.
get_docstring
(
node
.
body
[
0
]),
'line one
\n
line two'
)
node
=
ast
.
parse
(
'def foo():
\n
"""line one
\n
line two"""'
)
self
.
assertEqual
(
ast
.
get_docstring
(
node
.
body
[
0
]),
'line one
\n
line two'
)
node
=
ast
.
parse
(
'async def foo():
\n
"""spam
\n
ham"""'
)
self
.
assertEqual
(
ast
.
get_docstring
(
node
.
body
[
0
]),
'spam
\n
ham'
)
def
test_get_docstring_none
(
self
):
self
.
assertIsNone
(
ast
.
get_docstring
(
ast
.
parse
(
''
)))
node
=
ast
.
parse
(
'x = "not docstring"'
)
self
.
assertIsNone
(
ast
.
get_docstring
(
node
))
node
=
ast
.
parse
(
'def foo():
\n
pass'
)
self
.
assertIsNone
(
ast
.
get_docstring
(
node
))
node
=
ast
.
parse
(
'class foo:
\n
pass'
)
self
.
assertIsNone
(
ast
.
get_docstring
(
node
.
body
[
0
]))
node
=
ast
.
parse
(
'class foo:
\n
x = "not docstring"'
)
self
.
assertIsNone
(
ast
.
get_docstring
(
node
.
body
[
0
]))
node
=
ast
.
parse
(
'class foo:
\n
def bar(self): pass'
)
self
.
assertIsNone
(
ast
.
get_docstring
(
node
.
body
[
0
]))
node
=
ast
.
parse
(
'def foo():
\n
pass'
)
self
.
assertIsNone
(
ast
.
get_docstring
(
node
.
body
[
0
]))
node
=
ast
.
parse
(
'def foo():
\n
x = "not docstring"'
)
self
.
assertIsNone
(
ast
.
get_docstring
(
node
.
body
[
0
]))
node
=
ast
.
parse
(
'async def foo():
\n
pass'
)
self
.
assertIsNone
(
ast
.
get_docstring
(
node
.
body
[
0
]))
node
=
ast
.
parse
(
'async def foo():
\n
x = "not docstring"'
)
self
.
assertIsNone
(
ast
.
get_docstring
(
node
.
body
[
0
]))
def
test_literal_eval
(
self
):
self
.
assertEqual
(
ast
.
literal_eval
(
'[1, 2, 3]'
),
[
1
,
2
,
3
])
...
...
Misc/NEWS.d/next/Library/2018-06-13-15-12-25.bpo-33851.SVbqlz.rst
0 → 100644
Dosyayı görüntüle @
08f127a3
Fix :func:`ast.get_docstring` for a node that lacks a docstring.
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