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
30872e93
Commit
30872e93
authored
Jan 18, 2011
by
Vitja Makarov
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote branch 'upstream/master'
parents
7283b72f
d6027cb2
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
32 additions
and
23 deletions
+32
-23
Cython/Debugger/Tests/TestLibCython.py
Cython/Debugger/Tests/TestLibCython.py
+2
-1
Cython/Debugger/Tests/test_libcython_in_gdb.py
Cython/Debugger/Tests/test_libcython_in_gdb.py
+1
-1
Cython/__init__.py
Cython/__init__.py
+1
-1
MANIFEST.in
MANIFEST.in
+2
-1
Makefile
Makefile
+9
-10
runtests.py
runtests.py
+15
-0
setup.py
setup.py
+2
-9
No files found.
Cython/Debugger/Tests/TestLibCython.py
View file @
30872e93
...
...
@@ -197,10 +197,11 @@ class TestAll(GdbDebuggerTestCase):
return
out
,
err
=
self
.
p
.
communicate
()
err
=
err
.
decode
(
'UTF-8'
)
border
=
'*'
*
30
start
=
'%s v INSIDE GDB v %s'
%
(
border
,
border
)
end
=
'%s ^ INSIDE GDB ^ %s'
%
(
border
,
border
)
errmsg
=
'
\
n
%s
\
n
%s%s'
%
(
start
,
err
.
decode
(
'UTF-8'
)
,
end
)
errmsg
=
'
\
n
%s
\
n
%s%s'
%
(
start
,
err
,
end
)
self
.
assertEquals
(
0
,
self
.
p
.
wait
(),
errmsg
)
sys
.
stderr
.
write
(
err
)
...
...
Cython/Debugger/Tests/test_libcython_in_gdb.py
View file @
30872e93
...
...
@@ -426,7 +426,7 @@ def run_unittest_in_module(modulename):
"debugging information. Either compile python with "
"-g or get a debug build (configure with --with-pydebug)."
)
warnings
.
warn
(
msg
)
os
.
_exit
(
1
)
os
.
_exit
(
0
)
else
:
m
=
__import__
(
modulename
,
fromlist
=
[
''
])
tests
=
inspect
.
getmembers
(
m
,
inspect
.
isclass
)
...
...
Cython/__init__.py
View file @
30872e93
__version__
=
"0.14
+
"
__version__
=
"0.14
.1rc1
"
# Void cython.* directives (for case insensitive operating systems).
from
Cython.Shadow
import
*
MANIFEST.in
View file @
30872e93
include MANIFEST.in README.txt INSTALL.txt ToDo.txt USAGE.txt
include COPYING.txt LICENSE.txt Makefile
include .
hg
rev
include .
git
rev
include setup.py
include setupegg.py
include bin/*
...
...
@@ -16,6 +16,7 @@ include Demos/embed/*
include Demos/freeze/*
include Demos/libraries/*
include Demos/Makefile*
recursive-include Cython/Debugger/Tests/*
recursive-include Tools *
recursive-include tests *.pyx *.pxd *.pxi *.py *.h *.BROKEN bugs.txt
recursive-include tests *_lib.cpp *.srctree
...
...
Makefile
View file @
30872e93
PYTHON
?=
python
REPO
=
http://hg.cython.org/cython-devel
REPO
=
git://github.com/cython/cython.git
all
:
local
local
:
${PYTHON}
setup.py build_ext
--inplace
.hg
:
REV := $(shell cat .hgrev)
.hg
:
TMPDIR := $(shell mktemp -d tmprepo.XXXXXX)
.hg
:
hg clone
--rev
$(REV)
$(REPO)
$(TMPDIR)
hg
-R
$(TMPDIR)
update
mv
$(TMPDIR)
/.hg .
mv
$(TMPDIR)
/.hgignore .
mv
$(TMPDIR)
/.hgtags .
.git
:
REV := $(shell cat .gitrev)
.git
:
TMPDIR := $(shell mktemp -d tmprepo.XXXXXX)
.git
:
git clone
$(REPO)
$(TMPDIR)
cd
$(TMPDIR)
;
git checkout
-b
working
$(REV)
mv
$(TMPDIR)
/
{
.git,.hgtags,.hgignore
}
.
mv
$(TMPDIR)
/Doc/s5 Doc/s5
rm
-rf
$(TMPDIR)
repo
:
.
hg
repo
:
.
git
clean
:
...
...
runtests.py
View file @
30872e93
...
...
@@ -78,6 +78,15 @@ VER_DEP_MODULES = {
'
run
.
special_methods_T561_py2
']),
}
# files that should not be converted to Python 3 code with 2to3
KEEP_2X_FILES = [
os.path.join('
Cython
', '
Debugger
', '
Tests
', '
test_libcython_in_gdb
.
py
'),
os.path.join('
Cython
', '
Debugger
', '
Tests
', '
test_libpython_in_gdb
.
py
'),
os.path.join('
Cython
', '
Debugger
', '
libcython
.
py
'),
os.path.join('
Cython
', '
Debugger
', '
libpython
.
py
'),
]
INCLUDE_DIRS = [ d for d in os.getenv('
INCLUDE
', '').split(os.pathsep) if d ]
CFLAGS = os.getenv('
CFLAGS
', '').split()
...
...
@@ -931,9 +940,15 @@ def refactor_for_py3(distdir, cy3_dir):
graft Cython
recursive-exclude Cython *
recursive-include Cython *.py *.pyx *.pxd
recursive-include Cython/Debugger/Tests *
include runtests.py
'''
)
sys
.
path
.
insert
(
0
,
cy3_dir
)
for
keep_2x_file
in
KEEP_2X_FILES
:
destfile
=
os
.
path
.
join
(
cy3_dir
,
keep_2x_file
)
shutil
.
copy
(
keep_2x_file
,
destfile
)
class
PendingThreadsError
(
RuntimeError
):
pass
...
...
setup.py
View file @
30872e93
...
...
@@ -3,15 +3,8 @@ from distutils.sysconfig import get_python_lib
import
os
,
os
.
path
import
sys
if
'sdist'
in
sys
.
argv
and
sys
.
platform
!=
"win32"
and
sys
.
version_info
>=
(
2
,
4
):
# Record the current revision in .hgrev
import
subprocess
# os.popen is cleaner but deprecated
changeset
=
subprocess
.
Popen
(
"hg identify --id --rev tip"
.
split
(),
stdout
=
subprocess
.
PIPE
).
stdout
.
read
()
rev
=
changeset
.
decode
(
'ISO-8859-1'
).
strip
()
hgrev
=
open
(
'.hgrev'
,
'w'
)
hgrev
.
write
(
rev
)
hgrev
.
close
()
if
'sdist'
in
sys
.
argv
and
sys
.
platform
!=
"win32"
:
assert
os
.
system
(
"git show-ref -s HEAD > .gitrev"
)
==
0
if
sys
.
platform
==
"darwin"
:
# Don't create resource files on OS X tar.
...
...
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