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
Kirill Smelkov
cython
Commits
e8d4299f
Commit
e8d4299f
authored
Dec 16, 2010
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix compile crash
parent
30cf86bc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
Cython/Compiler/Code.py
Cython/Compiler/Code.py
+4
-4
No files found.
Cython/Compiler/Code.py
View file @
e8d4299f
...
...
@@ -6,7 +6,7 @@
import
cython
cython
.
declare
(
re
=
object
,
Naming
=
object
,
Options
=
object
,
StringEncoding
=
object
,
Utils
=
object
,
SourceDescriptor
=
object
,
StringIOTree
=
object
,
DebugFlags
=
object
,
none_or_sub
=
object
)
DebugFlags
=
object
,
none_or_sub
=
object
,
basestring
=
object
)
import
re
import
Naming
...
...
@@ -19,9 +19,9 @@ import DebugFlags
from
Cython.Utils
import
none_or_sub
try
:
basestring
except
Name
Error
:
basestring
=
str
from
__builtin__
import
basestring
except
Import
Error
:
from
builtins
import
str
as
basestring
class
UtilityCode
(
object
):
# Stores utility code to add during code generation.
...
...
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