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
Boxiang Sun
cython
Commits
ad356fd1
Commit
ad356fd1
authored
Mar 22, 2014
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove some legacy Py2.[45] code
parent
076fac37
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
95 deletions
+18
-95
Cython/Compiler/MemoryView.py
Cython/Compiler/MemoryView.py
+5
-8
Cython/Utils.py
Cython/Utils.py
+13
-87
No files found.
Cython/Compiler/MemoryView.py
View file @
ad356fd1
...
@@ -728,6 +728,7 @@ def get_axes_specs(env, axes):
...
@@ -728,6 +728,7 @@ def get_axes_specs(env, axes):
return
axes_specs
return
axes_specs
def
validate_axes
(
pos
,
axes
):
def
validate_axes
(
pos
,
axes
):
if
len
(
axes
)
>=
Options
.
buffer_max_dims
:
if
len
(
axes
)
>=
Options
.
buffer_max_dims
:
error
(
pos
,
"More dimensions than the maximum number"
error
(
pos
,
"More dimensions than the maximum number"
...
@@ -736,31 +737,27 @@ def validate_axes(pos, axes):
...
@@ -736,31 +737,27 @@ def validate_axes(pos, axes):
return
True
return
True
def
all
(
it
):
for
item
in
it
:
if
not
item
:
return
False
return
True
def
is_cf_contig
(
specs
):
def
is_cf_contig
(
specs
):
is_c_contig
=
is_f_contig
=
False
is_c_contig
=
is_f_contig
=
False
if
(
len
(
specs
)
==
1
and
specs
==
[(
'direct'
,
'contig'
)])
:
if
len
(
specs
)
==
1
and
specs
==
[(
'direct'
,
'contig'
)]
:
is_c_contig
=
True
is_c_contig
=
True
elif
(
specs
[
-
1
]
==
(
'direct'
,
'contig'
)
and
elif
(
specs
[
-
1
]
==
(
'direct'
,
'contig'
)
and
all
(
[
axis
==
(
'direct'
,
'follow'
)
for
axis
in
specs
[:
-
1
]
])):
all
(
axis
==
(
'direct'
,
'follow'
)
for
axis
in
specs
[:
-
1
])):
# c_contiguous: 'follow', 'follow', ..., 'follow', 'contig'
# c_contiguous: 'follow', 'follow', ..., 'follow', 'contig'
is_c_contig
=
True
is_c_contig
=
True
elif
(
len
(
specs
)
>
1
and
elif
(
len
(
specs
)
>
1
and
specs
[
0
]
==
(
'direct'
,
'contig'
)
and
specs
[
0
]
==
(
'direct'
,
'contig'
)
and
all
(
[
axis
==
(
'direct'
,
'follow'
)
for
axis
in
specs
[
1
:]
])):
all
(
axis
==
(
'direct'
,
'follow'
)
for
axis
in
specs
[
1
:
])):
# f_contiguous: 'contig', 'follow', 'follow', ..., 'follow'
# f_contiguous: 'contig', 'follow', 'follow', ..., 'follow'
is_f_contig
=
True
is_f_contig
=
True
return
is_c_contig
,
is_f_contig
return
is_c_contig
,
is_f_contig
def
get_mode
(
specs
):
def
get_mode
(
specs
):
is_c_contig
,
is_f_contig
=
is_cf_contig
(
specs
)
is_c_contig
,
is_f_contig
=
is_cf_contig
(
specs
)
...
...
Cython/Utils.py
View file @
ad356fd1
...
@@ -7,10 +7,10 @@ import os
...
@@ -7,10 +7,10 @@ import os
import
sys
import
sys
import
re
import
re
import
io
import
io
import
codecs
modification_time
=
os
.
path
.
getmtime
modification_time
=
os
.
path
.
getmtime
def
cached_function
(
f
):
def
cached_function
(
f
):
cache
=
{}
cache
=
{}
uncomputed
=
object
()
uncomputed
=
object
()
...
@@ -38,6 +38,7 @@ def replace_suffix(path, newsuf):
...
@@ -38,6 +38,7 @@ def replace_suffix(path, newsuf):
base
,
_
=
os
.
path
.
splitext
(
path
)
base
,
_
=
os
.
path
.
splitext
(
path
)
return
base
+
newsuf
return
base
+
newsuf
def
open_new_file
(
path
):
def
open_new_file
(
path
):
if
os
.
path
.
exists
(
path
):
if
os
.
path
.
exists
(
path
):
# Make sure to create a new file here so we can
# Make sure to create a new file here so we can
...
@@ -48,7 +49,8 @@ def open_new_file(path):
...
@@ -48,7 +49,8 @@ def open_new_file(path):
# ASCII strings or (e.g. for file names) byte encoded strings as
# ASCII strings or (e.g. for file names) byte encoded strings as
# Unicode, so we need a direct mapping from the first 256 Unicode
# Unicode, so we need a direct mapping from the first 256 Unicode
# characters to a byte sequence, which ISO-8859-1 provides
# characters to a byte sequence, which ISO-8859-1 provides
return
codecs
.
open
(
path
,
"w"
,
encoding
=
"ISO-8859-1"
)
return
io
.
open
(
path
,
"w"
,
encoding
=
"ISO-8859-1"
)
def
castrate_file
(
path
,
st
):
def
castrate_file
(
path
,
st
):
# Remove junk contents from an output file after a
# Remove junk contents from an output file after a
...
@@ -230,48 +232,6 @@ def skip_bom(f):
...
@@ -230,48 +232,6 @@ def skip_bom(f):
f
.
seek
(
0
)
f
.
seek
(
0
)
normalise_newlines
=
re
.
compile
(
u'
\
r
\
n
?|
\
n
'
).
sub
class
NormalisedNewlineStream
(
object
):
"""The codecs module doesn't provide universal newline support.
This class is used as a stream wrapper that provides this
functionality. The new 'io' in Py2.6+/3.x supports this out of the
box.
"""
def
__init__
(
self
,
stream
):
# let's assume .read() doesn't change
self
.
stream
=
stream
self
.
_read
=
stream
.
read
self
.
close
=
stream
.
close
self
.
encoding
=
getattr
(
stream
,
'encoding'
,
'UTF-8'
)
def
read
(
self
,
count
=-
1
):
data
=
self
.
_read
(
count
)
if
u'
\
r
'
not
in
data
:
return
data
if
data
.
endswith
(
u'
\
r
'
):
# may be missing a '\n'
data
+=
self
.
_read
(
1
)
return
normalise_newlines
(
u'
\
n
'
,
data
)
def
readlines
(
self
):
content
=
[]
data
=
self
.
read
(
0x1000
)
while
data
:
content
.
append
(
data
)
data
=
self
.
read
(
0x1000
)
return
u''
.
join
(
content
).
splitlines
(
True
)
def
seek
(
self
,
pos
):
if
pos
==
0
:
self
.
stream
.
seek
(
0
)
else
:
raise
NotImplementedError
def
open_source_file
(
source_filename
,
mode
=
"r"
,
def
open_source_file
(
source_filename
,
mode
=
"r"
,
encoding
=
None
,
error_handling
=
None
,
encoding
=
None
,
error_handling
=
None
,
require_normalised_newlines
=
True
):
require_normalised_newlines
=
True
):
...
@@ -288,7 +248,7 @@ def open_source_file(source_filename, mode="r",
...
@@ -288,7 +248,7 @@ def open_source_file(source_filename, mode="r",
return
f
return
f
else
:
else
:
f
.
close
()
f
.
close
()
#
if
not
os
.
path
.
exists
(
source_filename
):
if
not
os
.
path
.
exists
(
source_filename
):
try
:
try
:
loader
=
__loader__
loader
=
__loader__
...
@@ -299,16 +259,9 @@ def open_source_file(source_filename, mode="r",
...
@@ -299,16 +259,9 @@ def open_source_file(source_filename, mode="r",
require_normalised_newlines
)
require_normalised_newlines
)
except
(
NameError
,
AttributeError
):
except
(
NameError
,
AttributeError
):
pass
pass
#
if
io
is
not
None
:
stream
=
io
.
open
(
source_filename
,
mode
=
mode
,
stream
=
io
.
open
(
source_filename
,
mode
=
mode
,
encoding
=
encoding
,
errors
=
error_handling
)
encoding
=
encoding
,
errors
=
error_handling
)
else
:
# codecs module doesn't have universal newline support
stream
=
codecs
.
open
(
source_filename
,
mode
=
mode
,
encoding
=
encoding
,
errors
=
error_handling
)
if
require_normalised_newlines
:
stream
=
NormalisedNewlineStream
(
stream
)
skip_bom
(
stream
)
skip_bom
(
stream
)
return
stream
return
stream
...
@@ -320,20 +273,10 @@ def open_source_from_loader(loader,
...
@@ -320,20 +273,10 @@ def open_source_from_loader(loader,
nrmpath
=
os
.
path
.
normpath
(
source_filename
)
nrmpath
=
os
.
path
.
normpath
(
source_filename
)
arcname
=
nrmpath
[
len
(
loader
.
archive
)
+
1
:]
arcname
=
nrmpath
[
len
(
loader
.
archive
)
+
1
:]
data
=
loader
.
get_data
(
arcname
)
data
=
loader
.
get_data
(
arcname
)
if
io
is
not
None
:
return
io
.
TextIOWrapper
(
io
.
BytesIO
(
data
),
return
io
.
TextIOWrapper
(
io
.
BytesIO
(
data
),
encoding
=
encoding
,
encoding
=
encoding
,
errors
=
error_handling
)
errors
=
error_handling
)
else
:
try
:
import
cStringIO
as
StringIO
except
ImportError
:
import
StringIO
reader
=
codecs
.
getreader
(
encoding
)
stream
=
reader
(
StringIO
.
StringIO
(
data
))
if
require_normalised_newlines
:
stream
=
NormalisedNewlineStream
(
stream
)
return
stream
def
str_to_number
(
value
):
def
str_to_number
(
value
):
# note: this expects a string as input that was accepted by the
# note: this expects a string as input that was accepted by the
...
@@ -357,29 +300,12 @@ def str_to_number(value):
...
@@ -357,29 +300,12 @@ def str_to_number(value):
value
=
int
(
value
,
0
)
value
=
int
(
value
,
0
)
return
value
return
value
def
long_literal
(
value
):
def
long_literal
(
value
):
if
isinstance
(
value
,
basestring
):
if
isinstance
(
value
,
basestring
):
value
=
str_to_number
(
value
)
value
=
str_to_number
(
value
)
return
not
-
2
**
31
<=
value
<
2
**
31
return
not
-
2
**
31
<=
value
<
2
**
31
# all() and any() are new in 2.5
try
:
# Make sure to bind them on the module, as they will be accessed as
# attributes
all
=
all
any
=
any
except
NameError
:
def
all
(
items
):
for
item
in
items
:
if
not
item
:
return
False
return
True
def
any
(
items
):
for
item
in
items
:
if
item
:
return
True
return
False
@
cached_function
@
cached_function
def
get_cython_cache_dir
():
def
get_cython_cache_dir
():
...
...
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