Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Gwenaël Samain
cython
Commits
716fe67c
Commit
716fe67c
authored
Oct 12, 2012
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Backed out changeset 3311f176703f
parent
9a3027f2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
19 deletions
+13
-19
Cython/Compiler/ParseTreeTransforms.py
Cython/Compiler/ParseTreeTransforms.py
+13
-19
No files found.
Cython/Compiler/ParseTreeTransforms.py
View file @
716fe67c
...
...
@@ -179,40 +179,34 @@ class PostParse(ScopeTrackingTransform):
'__cythonbufferdefaults__'
:
self
.
handle_bufferdefaults
}
def
extract_docs
tring
(
self
,
result
):
def
_visit_DocS
tring
(
self
,
result
):
if
hasattr
(
result
.
body
,
'stats'
)
and
result
.
body
.
stats
:
first_node
=
result
.
body
.
stats
[
0
]
if
isinstance
(
first_node
,
Nodes
.
ExprStatNode
)
and
first_node
.
expr
.
is_string_literal
:
string_node
=
first_node
.
expr
result
.
body
.
stats
[:]
=
result
.
body
.
stats
[
1
:]
if
isinstance
(
string_node
,
ExprNodes
.
BytesNode
):
warning
(
string_node
.
pos
,
"Python 3 requires docstrings to be unicode strings"
)
result
.
doc
=
string_node
.
value
elif
getattr
(
string_node
,
'unicode_value'
,
None
)
is
not
None
:
result
.
doc
=
string_node
.
unicode_value
else
:
result
.
doc
=
string_node
.
value
return
string_node
,
result
firstNode
=
result
.
body
.
stats
[
0
]
if
isinstance
(
firstNode
,
Nodes
.
ExprStatNode
)
and
firstNode
.
expr
.
is_string_literal
:
result
.
body
.
stats
=
result
.
body
.
stats
[
1
:]
self
.
doc
=
firstNode
.
expr
.
value
result
.
doc
=
self
.
doc
return
firstNode
.
expr
,
result
return
None
,
result
def
visit_FuncDefNode
(
self
,
node
):
doc
_node
,
result
=
self
.
extract_docs
tring
(
super
(
PostParse
,
self
).
visit_FuncDefNode
(
node
))
doc
Node
,
result
=
self
.
_visit_DocS
tring
(
super
(
PostParse
,
self
).
visit_FuncDefNode
(
node
))
return
result
def
visit_PyClassDefNode
(
self
,
node
):
doc
_node
,
result
=
self
.
extract_docs
tring
(
super
(
PostParse
,
self
).
visit_PyClassDefNode
(
node
))
if
doc
_n
ode
:
result
.
classobj
.
doc
=
doc
_n
ode
doc
Node
,
result
=
self
.
_visit_DocS
tring
(
super
(
PostParse
,
self
).
visit_PyClassDefNode
(
node
))
if
doc
N
ode
:
result
.
classobj
.
doc
=
doc
N
ode
return
result
def
visit_CClassDefNode
(
self
,
node
):
doc
_node
,
result
=
self
.
extract_docs
tring
(
super
(
PostParse
,
self
).
visit_CClassDefNode
(
node
))
doc
Node
,
result
=
self
.
_visit_DocS
tring
(
super
(
PostParse
,
self
).
visit_CClassDefNode
(
node
))
return
result
def
visit_ModuleNode
(
self
,
node
):
self
.
lambda_counter
=
1
self
.
genexpr_counter
=
1
doc
_node
,
result
=
self
.
extract_docs
tring
(
super
(
PostParse
,
self
).
visit_ModuleNode
(
node
))
doc
Node
,
result
=
self
.
_visit_DocS
tring
(
super
(
PostParse
,
self
).
visit_ModuleNode
(
node
))
return
result
def
visit_LambdaNode
(
self
,
node
):
...
...
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