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
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
nexedi
cython
Commits
97dda59a
Commit
97dda59a
authored
Jul 26, 2015
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
move variable declarations out of the way of 2to3 in Py3.2
parent
dab50d0f
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletion
+2
-1
Cython/Compiler/Scanning.pxd
Cython/Compiler/Scanning.pxd
+2
-0
Cython/Compiler/Scanning.py
Cython/Compiler/Scanning.py
+0
-1
No files found.
Cython/Compiler/Scanning.pxd
View file @
97dda59a
...
@@ -4,6 +4,8 @@ import cython
...
@@ -4,6 +4,8 @@ import cython
from
..Plex.Scanners
cimport
Scanner
from
..Plex.Scanners
cimport
Scanner
cdef
unicode
any_string_prefix
,
IDENT
cdef
get_lexicon
()
cdef
get_lexicon
()
cdef
initial_compile_time_env
()
cdef
initial_compile_time_env
()
...
...
Cython/Compiler/Scanning.py
View file @
97dda59a
...
@@ -7,7 +7,6 @@ from __future__ import absolute_import
...
@@ -7,7 +7,6 @@ from __future__ import absolute_import
import
cython
import
cython
cython
.
declare
(
make_lexicon
=
object
,
lexicon
=
object
,
cython
.
declare
(
make_lexicon
=
object
,
lexicon
=
object
,
any_string_prefix
=
cython
.
unicode
,
IDENT
=
cython
.
unicode
,
print_function
=
object
,
error
=
object
,
warning
=
object
,
print_function
=
object
,
error
=
object
,
warning
=
object
,
os
=
object
,
platform
=
object
)
os
=
object
,
platform
=
object
)
...
...
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