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
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
Show 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 @@
...
@@ -3,26 +3,24 @@
#
#
import
cython
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
,
Builtin
=
object
,
error
=
object
,
warning
=
object
,
Naming
=
object
,
PyrexTypes
=
object
,
py_object_type
=
object
,
ModuleScope
=
object
,
LocalScope
=
object
,
ClosureScope
=
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
,
CppClassScope
=
object
,
UtilityCode
=
object
,
EncodedString
=
object
,
absolute_path_length
=
cython
.
Py_ssize_t
)
absolute_path_length
=
cython
.
Py_ssize_t
)
import
sys
,
os
,
time
,
copy
import
sys
,
os
,
copy
import
Builtin
import
Builtin
from
Errors
import
error
,
warning
,
InternalError
,
CompileError
from
Errors
import
error
,
warning
,
InternalError
,
CompileError
import
Naming
import
Naming
import
PyrexTypes
import
PyrexTypes
import
TypeSlots
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
,
\
from
Symtab
import
ModuleScope
,
LocalScope
,
ClosureScope
,
\
StructOrUnionScope
,
PyClassScope
,
CClassScope
,
CppClassScope
StructOrUnionScope
,
PyClassScope
,
CppClassScope
from
Cython.Compiler
import
Symtab
from
Code
import
UtilityCode
from
Cython.Utils
import
open_new_file
,
replace_suffix
from
Code
import
UtilityCode
,
ClosureTempAllocator
from
StringEncoding
import
EncodedString
,
escape_byte_string
,
split_string_literal
from
StringEncoding
import
EncodedString
,
escape_byte_string
,
split_string_literal
import
Options
import
Options
import
DebugFlags
import
DebugFlags
...
...
Cython/Compiler/PyrexTypes.py
View file @
78997d8f
...
@@ -8,8 +8,6 @@ import Naming
...
@@ -8,8 +8,6 @@ import Naming
import
copy
import
copy
from
Errors
import
error
from
Errors
import
error
import
cython
class
BaseType
(
object
):
class
BaseType
(
object
):
#
#
# Base class for all Cython types including pseudo-types.
# 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