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
77223135
Commit
77223135
authored
Mar 28, 2016
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove dead code
parent
be4f9fb5
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
13 deletions
+3
-13
Cython/Debugger/DebugWriter.py
Cython/Debugger/DebugWriter.py
+3
-13
No files found.
Cython/Debugger/DebugWriter.py
View file @
77223135
from
__future__
import
with_statemen
t
from
__future__
import
absolute_impor
t
import
os
import
os
import
sys
import
sys
...
@@ -10,24 +10,14 @@ try:
...
@@ -10,24 +10,14 @@ try:
except
ImportError
:
except
ImportError
:
have_lxml
=
False
have_lxml
=
False
try
:
try
:
# Python 2.5
from
xml.etree
import
cElementTree
as
etree
from
xml.etree
import
cElementTree
as
etree
except
ImportError
:
except
ImportError
:
try
:
try
:
# Python 2.5
from
xml.etree
import
ElementTree
as
etree
from
xml.etree
import
ElementTree
as
etree
except
ImportError
:
try
:
# normal cElementTree install
import
cElementTree
as
etree
except
ImportError
:
try
:
# normal ElementTree install
import
elementtree.ElementTree
as
etree
except
ImportError
:
except
ImportError
:
etree
=
None
etree
=
None
from
Cython
.Compiler
import
Errors
from
.
.Compiler
import
Errors
class
CythonDebugWriter
(
object
):
class
CythonDebugWriter
(
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