-cdef extern from "<vector>" namespace std:\r
-\r
- cdef cppclass vector[TYPE]:\r
- #constructors\r
- __init__()\r
- __init__(vector&)\r
- __init__(int)\r
- __init__(int, TYPE&)\r
- __init__(iterator, iterator)\r
- #operators\r
- TYPE& __getitem__(int)\r
- TYPE& __setitem__(int, TYPE&)\r
- vector __new__(vector&)\r
- bool __eq__(vector&, vector&)\r
- bool __ne__(vector&, vector&)\r
- bool __lt__(vector&, vector&)\r
- bool __gt__(vector&, vector&)\r
- bool __le__(vector&, vector&)\r
- bool __ge__(vector&, vector&)\r
- #others\r
- void assign(int, TYPE)\r
- #void assign(iterator, iterator)\r
- TYPE& at(int)\r
- TYPE& back()\r
- iterator begin()\r
- int capacity()\r
- void clear()\r
- bool empty()\r
- iterator end()\r
- iterator erase(iterator)\r
- iterator erase(iterator, iterator)\r
- TYPE& front()\r
- iterator insert(iterator, TYPE&)\r
- void insert(iterator, int, TYPE&)\r
- void insert(iterator, iterator)\r
- int max_size()\r
- void pop_back()\r
- void push_back(TYPE&)\r
- iterator rbegin()\r
- iterator rend()\r
- void reserve(int)\r
- void resize(int)\r
- void resize(int, TYPE&) #void resize(size_type num, const TYPE& = TYPE())\r
- int size()\r
- void swap(container&)\r
-\r
-cdef extern from "<deque>" namespace std:\r
-\r
- cdef cppclass deque[TYPE]:\r
- #constructors\r
- __init__()\r
- __init__(deque&)\r
- __init__(int)\r
- __init__(int, TYPE&)\r
- __init__(iterator, iterator)\r
- #operators\r
- TYPE& operator[]( size_type index );\r
- const TYPE& operator[]( size_type index ) const;\r
- deque __new__(deque&);\r
- bool __eq__(deque&, deque&);\r
- bool __ne__(deque&, deque&);\r
- bool __lt__(deque&, deque&);\r
- bool __gt__(deque&, deque&);\r
- bool __le__(deque&, deque&);\r
- bool __ge__(deque&, deque&);\r
- #others\r
- void assign(int, TYPE&)\r
- void assign(iterator, iterator)\r
- TYPE& at(int)\r
- TYPE& back()\r
- iterator begin()\r
- void clear()\r
- bool empty()\r
- iterator end()\r
- iterator erase(iterator)\r
- iterator erase(iterator, iterator)\r
- TYPE& front()\r
- iterator insert(iterator, TYPE&)\r
- void insert(iterator, int, TYPE&)\r
- void insert(iterator, iterator, iterator)\r
- int max_size()\r
- void pop_back()\r
- void pop_front()\r
- void push_back(TYPE&)\r
- void push_front(TYPE&)\r
- iterator rbegin()\r
- iterator rend()\r
- void resize(int)\r
- void resize(int, TYPE&)\r
- int size()\r
- void swap(container&)\r
+cdef extern from "<vector>" namespace std:
+
+ cdef cppclass vector[TYPE]:
+ #constructors
+ __init__()
+ __init__(vector&)
+ __init__(int)
+ __init__(int, TYPE&)
+ __init__(iterator, iterator)
+ #operators
+ TYPE& __getitem__(int)
+ TYPE& __setitem__(int, TYPE&)
+ vector __new__(vector&)
+ bool __eq__(vector&, vector&)
+ bool __ne__(vector&, vector&)
+ bool __lt__(vector&, vector&)
+ bool __gt__(vector&, vector&)
+ bool __le__(vector&, vector&)
+ bool __ge__(vector&, vector&)
+ #others
+ void assign(int, TYPE)
+ #void assign(iterator, iterator)
+ TYPE& at(int)
+ TYPE& back()
+ iterator begin()
+ int capacity()
+ void clear()
+ bool empty()
+ iterator end()
+ iterator erase(iterator)
+ iterator erase(iterator, iterator)
+ TYPE& front()
+ iterator insert(iterator, TYPE&)
+ void insert(iterator, int, TYPE&)
+ void insert(iterator, iterator)
+ int max_size()
+ void pop_back()
+ void push_back(TYPE&)
+ iterator rbegin()
+ iterator rend()
+ void reserve(int)
+ void resize(int)
+ void resize(int, TYPE&) #void resize(size_type num, const TYPE& = TYPE())
+ int size()
+ void swap(container&)
+
+cdef extern from "<deque>" namespace std:
+
+ cdef cppclass deque[TYPE]:
+ #constructors
+ __init__()
+ __init__(deque&)
+ __init__(int)
+ __init__(int, TYPE&)
+ __init__(iterator, iterator)
+ #operators
+ TYPE& operator[]( size_type index );
+ const TYPE& operator[]( size_type index ) const;
+ deque __new__(deque&);
+ bool __eq__(deque&, deque&);
+ bool __ne__(deque&, deque&);
+ bool __lt__(deque&, deque&);
+ bool __gt__(deque&, deque&);
+ bool __le__(deque&, deque&);
+ bool __ge__(deque&, deque&);
+ #others
+ void assign(int, TYPE&)
+ void assign(iterator, iterator)
+ TYPE& at(int)
+ TYPE& back()
+ iterator begin()
+ void clear()
+ bool empty()
+ iterator end()
+ iterator erase(iterator)
+ iterator erase(iterator, iterator)
+ TYPE& front()
+ iterator insert(iterator, TYPE&)
+ void insert(iterator, int, TYPE&)
+ void insert(iterator, iterator, iterator)
+ int max_size()
+ void pop_back()
+ void pop_front()
+ void push_back(TYPE&)
+ void push_front(TYPE&)
+ iterator rbegin()
+ iterator rend()
+ void resize(int)
+ void resize(int, TYPE&)
+ int size()
+ void swap(container&)
def build_extension(self, ext):
if ext.language == 'c++':
try:
- try: # Py2.7+ & Py3.2+
+ try: # Py2.7+ & Py3.2+
compiler_obj = self.compiler_obj
except AttributeError:
compiler_obj = self.compiler
source = self.find_module_source_file(
os.path.join(test_directory, module + '.pyx'))
target = os.path.join(targetdir, self.build_target_filename(module))
-
+
if extra_compile_options is None:
extra_compile_options = {}
-
+
try:
CompilationOptions
except NameError:
from Cython.Compiler.Main import CompilationOptions
from Cython.Compiler.Main import compile as cython_compile
from Cython.Compiler.Main import default_options
-
+
options = CompilationOptions(
default_options,
include_path = include_dirs,
cython_compile(source, options=options,
full_module_name=module)
- def run_distutils(self, test_directory, module, workdir, incdir,
+ def run_distutils(self, test_directory, module, workdir, incdir,
extra_extension_args=None):
cwd = os.getcwd()
os.chdir(workdir)
if match(module):
ext_include_dirs += get_additional_include_dirs()
self.copy_related_files(test_directory, workdir, module)
-
+
if extra_extension_args is None:
extra_extension_args = {}
-
+
extension = Extension(
module,
sources = self.find_source_files(workdir, module),
return dirname == "Tests"
loader = unittest.TestLoader()
-
+
if include_debugger:
skipped_dirs = []
else:
return dirname not in ("Mac", "Distutils", "Plex")
def file_matches(filename):
filename, ext = os.path.splitext(filename)
- blacklist = ['libcython', 'libpython', 'test_libcython_in_gdb',
+ blacklist = ['libcython', 'libpython', 'test_libcython_in_gdb',
'TestLibCython']
return (ext == '.py' and not
'~' in filename and not
directory structure and its header gives a list of commands to run.
"""
cython_root = os.path.dirname(os.path.abspath(__file__))
-
+
def __init__(self, treefile, workdir, cleanup_workdir=True):
self.treefile = treefile
self.workdir = os.path.join(workdir, os.path.splitext(treefile)[0])
if self.cleanup_workdir:
shutil.rmtree(self.workdir)
os.chdir(self.old_dir)
-
+
def runTest(self):
commands = (self.commands
.replace("CYTHON", "PYTHON %s" % os.path.join(self.cython_root, 'cython.py'))
# TODO: Windows support.
class EmbedTest(unittest.TestCase):
-
+
working_dir = "Demos/embed"
-
+
def setUp(self):
self.old_dir = os.getcwd()
os.chdir(self.working_dir)
os.system(
"make PYTHON='%s' clean > /dev/null" % sys.executable)
-
+
def tearDown(self):
try:
os.system(
except:
pass
os.chdir(self.old_dir)
-
+
def test_embed(self):
from distutils import sysconfig
libname = sysconfig.get_config_var('LIBRARY')
self.excludes[line.split()[0]] = True
finally:
f.close()
-
+
def __call__(self, testname):
return testname in self.excludes or testname.split('.')[-1] in self.excludes
help="do not run the file based tests")
parser.add_option("--no-pyregr", dest="pyregr",
action="store_false", default=True,
- help="do not run the regression tests of CPython in tests/pyregr/")
+ help="do not run the regression tests of CPython in tests/pyregr/")
parser.add_option("--cython-only", dest="cython_only",
action="store_true", default=False,
help="only compile pyx to c, do not run C compiler or run the tests")
# Chech which external modules are not present and exclude tests
# which depends on them (by prefix)
- missing_dep_excluder = MissingDependencyExcluder(EXT_DEP_MODULES)
- version_dep_excluder = VersionDependencyExcluder(VER_DEP_MODULES)
+ missing_dep_excluder = MissingDependencyExcluder(EXT_DEP_MODULES)
+ version_dep_excluder = VersionDependencyExcluder(VER_DEP_MODULES)
exclude_selectors = [missing_dep_excluder, version_dep_excluder] # want to pring msg at exit
if options.exclude:
exclude_selectors += [ re.compile(r, re.I|re.U).search for r in options.exclude ]
-
+
if not test_bugs:
exclude_selectors += [ FileListExcluder("tests/bugs.txt") ]
-
+
if sys.platform in ['win32', 'cygwin'] and sys.version_info < (2,6):
exclude_selectors += [ lambda x: x == "run.specialfloat" ]
ignored_modules = ('Options', 'Version', 'DebugFlags', 'CmdLine')
modules = [ module for name, module in sys.modules.items()
if module is not None and
- name.startswith('Cython.Compiler.') and
+ name.startswith('Cython.Compiler.') and
name[len('Cython.Compiler.'):] not in ignored_modules ]
if options.coverage:
coverage.report(modules, show_missing=0)