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
78997d8f
Commit
78997d8f
authored
Nov 13, 2011
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
removed some more unused imports
parent
2d2ea33c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
10 deletions
+6
-10
Cython/Compiler/Nodes.py
Cython/Compiler/Nodes.py
+6
-8
Cython/Compiler/PyrexTypes.py
Cython/Compiler/PyrexTypes.py
+0
-2
No files found.
Cython/Compiler/Nodes.py
View file @
78997d8f
...
...
@@ -3,26 +3,24 @@
#
import
cython
cython
.
declare
(
sys
=
object
,
os
=
object
,
time
=
object
,
copy
=
object
,
cython
.
declare
(
sys
=
object
,
os
=
object
,
copy
=
object
,
Builtin
=
object
,
error
=
object
,
warning
=
object
,
Naming
=
object
,
PyrexTypes
=
object
,
py_object_type
=
object
,
ModuleScope
=
object
,
LocalScope
=
object
,
ClosureScope
=
object
,
StructOrUnionScope
=
object
,
PyClassScope
=
object
,
CClassScope
=
object
,
StructOrUnionScope
=
object
,
PyClassScope
=
object
,
CppClassScope
=
object
,
UtilityCode
=
object
,
EncodedString
=
object
,
absolute_path_length
=
cython
.
Py_ssize_t
)
import
sys
,
os
,
time
,
copy
import
sys
,
os
,
copy
import
Builtin
from
Errors
import
error
,
warning
,
InternalError
,
CompileError
import
Naming
import
PyrexTypes
import
TypeSlots
from
PyrexTypes
import
py_object_type
,
error_type
,
CTypedefType
,
CFuncType
,
cython_memoryview_ptr_type
from
PyrexTypes
import
py_object_type
,
error_type
from
Symtab
import
ModuleScope
,
LocalScope
,
ClosureScope
,
\
StructOrUnionScope
,
PyClassScope
,
CClassScope
,
CppClassScope
from
Cython.Compiler
import
Symtab
from
Cython.Utils
import
open_new_file
,
replace_suffix
from
Code
import
UtilityCode
,
ClosureTempAllocator
StructOrUnionScope
,
PyClassScope
,
CppClassScope
from
Code
import
UtilityCode
from
StringEncoding
import
EncodedString
,
escape_byte_string
,
split_string_literal
import
Options
import
DebugFlags
...
...
Cython/Compiler/PyrexTypes.py
View file @
78997d8f
...
...
@@ -8,8 +8,6 @@ import Naming
import
copy
from
Errors
import
error
import
cython
class
BaseType
(
object
):
#
# Base class for all Cython types including pseudo-types.
...
...
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