Commit 63c07e29 authored by Robert Bradshaw's avatar Robert Bradshaw

Merge branch 'master' into ctuple

Conflicts:
	CHANGES.rst
parents b7d80418 99e68228
...@@ -22,12 +22,14 @@ before_install: ...@@ -22,12 +22,14 @@ before_install:
- sudo apt-get install gdb python$( python -c 'import sys; print("%d.%d" % sys.version_info[:2])' )-dbg || true - sudo apt-get install gdb python$( python -c 'import sys; print("%d.%d" % sys.version_info[:2])' )-dbg || true
- dpkg -l | grep gdb || true - dpkg -l | grep gdb || true
install: CFLAGS="-O2 -ggdb" pip install . install:
- CFLAGS="-O2 -ggdb -Wall -Wextra $(python -c 'import sys; print("-fno-strict-aliasing" if sys.version_info[0] == 2 else "")')" python setup.py build
script: script:
- PYTHON_DBG="python$( python -c 'import sys; print("%d.%d" % sys.version_info[:2])' )-dbg" - PYTHON_DBG="python$( python -c 'import sys; print("%d.%d" % sys.version_info[:2])' )-dbg"
- if $PYTHON_DBG -V >&2; then CFLAGS="-O0 -ggdb" $PYTHON_DBG runtests.py -vv Debugger --backends=$BACKEND; fi - if $PYTHON_DBG -V >&2; then CFLAGS="-O0 -ggdb" $PYTHON_DBG runtests.py -vv Debugger --backends=$BACKEND; fi
- CFLAGS="-O0 -ggdb" python runtests.py -vv -x Debugger --backends=$BACKEND - CFLAGS="-O2 -ggdb -Wall -Wextra" python setup.py build_ext -i
- CFLAGS="-O0 -ggdb -Wall -Wextra" python runtests.py -vv -x Debugger --backends=$BACKEND
matrix: matrix:
allow_failures: allow_failures:
...@@ -38,4 +40,3 @@ matrix: ...@@ -38,4 +40,3 @@ matrix:
env: BACKEND=cpp env: BACKEND=cpp
- python: pypy3 - python: pypy3
env: BACKEND=cpp env: BACKEND=cpp
fast_finish: true
...@@ -8,6 +8,21 @@ Latest ...@@ -8,6 +8,21 @@ Latest
Features added Features added
-------------- --------------
* C functions can coerce to Python functions, which allows passing them
around as callable objects.
* New ``cythonize`` option ``-a`` to generate the annotated HTML source view.
* Extern C functions can now be declared as cpdef to export them to
the module's Python namespace. Extern C functions in pxd files export
their values to their own module, iff it exists.
* Missing C-API declarations in ``cpython.unicode`` were added.
* Passing ``language='c++'`` into cythonize() globally enables C++ mode for
all modules that were not passed as Extension objects (i.e. only source
files and file patterns).
* ``Py_hash_t`` is a known type (used in CPython for hash values). * ``Py_hash_t`` is a known type (used in CPython for hash values).
* ``PySlice_*()`` C-API functions are available from the ``cpython.slice`` * ``PySlice_*()`` C-API functions are available from the ``cpython.slice``
...@@ -15,14 +30,20 @@ Features added ...@@ -15,14 +30,20 @@ Features added
* Anonymous C tuple types can be declared as (ctype1, ctype2, ...). * Anonymous C tuple types can be declared as (ctype1, ctype2, ...).
* Allow arrays of C++ classes.
Bugs fixed Bugs fixed
---------- ----------
* Mismatching 'except' declarations on signatures in .pxd and .pyx files failed
to produce a compile error.
* Reference leak for non-simple Python expressions in boolean and/or expressions. * Reference leak for non-simple Python expressions in boolean and/or expressions.
* ``getitimer()``, ``setitimer()``, ``gettimeofday()`` and related type/constant * To fix a name collision and to reflect availability on host platforms,
definitions were moved from ``posix/time.pxd`` to ``posix/sys_time.pxd`` to standard C declarations [ clock(), time(), struct tm and tm* functions ]
fix a naming collision. were moved from posix/time.pxd to a new libc/time.pxd. Patch by Charles
Blake.
* Rerunning unmodified modules in IPython's cython support failed. * Rerunning unmodified modules in IPython's cython support failed.
Patch by Matthias Bussonier. Patch by Matthias Bussonier.
...@@ -34,7 +55,12 @@ Bugs fixed ...@@ -34,7 +55,12 @@ Bugs fixed
if the already created module was used later on (e.g. through a if the already created module was used later on (e.g. through a
stale reference in sys.modules or elsewhere). stale reference in sys.modules or elsewhere).
* Allow arrays of C++ classes. Other changes
-------------
* Compilation no longer fails hard when unknown compilation options are
passed. Instead, it raises a warning and ignores them (as it did silently
before 0.21). This will be changed back to an error in a future release.
0.21 (2014-09-10) 0.21 (2014-09-10)
......
...@@ -145,6 +145,8 @@ def parse_args(args): ...@@ -145,6 +145,8 @@ def parse_args(args):
help='set a cythonize option') help='set a cythonize option')
parser.add_option('-3', dest='python3_mode', action='store_true', parser.add_option('-3', dest='python3_mode', action='store_true',
help='use Python 3 syntax mode by default') help='use Python 3 syntax mode by default')
parser.add_option('-a', '--annotate', dest='annotate', action='store_true',
help='generate annotated HTML page for source files')
parser.add_option('-x', '--exclude', metavar='PATTERN', dest='excludes', parser.add_option('-x', '--exclude', metavar='PATTERN', dest='excludes',
action='append', default=[], action='append', default=[],
...@@ -188,6 +190,9 @@ def main(args=None): ...@@ -188,6 +190,9 @@ def main(args=None):
Options.error_on_unknown_names = False Options.error_on_unknown_names = False
Options.error_on_uninitialized = False Options.error_on_uninitialized = False
if options.annotate:
Options.annotate = True
for path in paths: for path in paths:
cython_compile(path, options) cython_compile(path, options)
......
...@@ -251,6 +251,7 @@ def strip_string_literals(code, prefix='__Pyx_L'): ...@@ -251,6 +251,7 @@ def strip_string_literals(code, prefix='__Pyx_L'):
in_quote = False in_quote = False
hash_mark = single_q = double_q = -1 hash_mark = single_q = double_q = -1
code_len = len(code) code_len = len(code)
quote_type = quote_len = None
while True: while True:
if hash_mark < q: if hash_mark < q:
...@@ -260,7 +261,8 @@ def strip_string_literals(code, prefix='__Pyx_L'): ...@@ -260,7 +261,8 @@ def strip_string_literals(code, prefix='__Pyx_L'):
if double_q < q: if double_q < q:
double_q = code.find('"', q) double_q = code.find('"', q)
q = min(single_q, double_q) q = min(single_q, double_q)
if q == -1: q = max(single_q, double_q) if q == -1:
q = max(single_q, double_q)
# We're done. # We're done.
if q == -1 and hash_mark == -1: if q == -1 and hash_mark == -1:
...@@ -276,7 +278,8 @@ def strip_string_literals(code, prefix='__Pyx_L'): ...@@ -276,7 +278,8 @@ def strip_string_literals(code, prefix='__Pyx_L'):
if k % 2 == 0: if k % 2 == 0:
q += 1 q += 1
continue continue
if code[q] == quote_type and (quote_len == 1 or (code_len > q + 2 and quote_type == code[q+1] == code[q+2])): if code[q] == quote_type and (
quote_len == 1 or (code_len > q + 2 and quote_type == code[q+1] == code[q+2])):
counter += 1 counter += 1
label = "%s%s_" % (prefix, counter) label = "%s%s_" % (prefix, counter)
literals[label] = code[start+quote_len:q] literals[label] = code[start+quote_len:q]
...@@ -586,7 +589,8 @@ def create_dependency_tree(ctx=None, quiet=False): ...@@ -586,7 +589,8 @@ def create_dependency_tree(ctx=None, quiet=False):
# This may be useful for advanced users? # This may be useful for advanced users?
def create_extension_list(patterns, exclude=[], ctx=None, aliases=None, quiet=False, exclude_failures=False): def create_extension_list(patterns, exclude=[], ctx=None, aliases=None, quiet=False, language=None,
exclude_failures=False):
if not isinstance(patterns, (list, tuple)): if not isinstance(patterns, (list, tuple)):
patterns = [patterns] patterns = [patterns]
explicit_modules = set([m.name for m in patterns if isinstance(m, Extension)]) explicit_modules = set([m.name for m in patterns if isinstance(m, Extension)])
...@@ -606,6 +610,7 @@ def create_extension_list(patterns, exclude=[], ctx=None, aliases=None, quiet=Fa ...@@ -606,6 +610,7 @@ def create_extension_list(patterns, exclude=[], ctx=None, aliases=None, quiet=Fa
name = '*' name = '*'
base = None base = None
exn_type = Extension exn_type = Extension
ext_language = language
elif isinstance(pattern, Extension): elif isinstance(pattern, Extension):
for filepattern in pattern.sources: for filepattern in pattern.sources:
if os.path.splitext(filepattern)[1] in ('.py', '.pyx'): if os.path.splitext(filepattern)[1] in ('.py', '.pyx'):
...@@ -618,6 +623,7 @@ def create_extension_list(patterns, exclude=[], ctx=None, aliases=None, quiet=Fa ...@@ -618,6 +623,7 @@ def create_extension_list(patterns, exclude=[], ctx=None, aliases=None, quiet=Fa
name = template.name name = template.name
base = DistutilsInfo(exn=template) base = DistutilsInfo(exn=template)
exn_type = template.__class__ exn_type = template.__class__
ext_language = None # do not override whatever the Extension says
else: else:
raise TypeError(pattern) raise TypeError(pattern)
...@@ -661,6 +667,9 @@ def create_extension_list(patterns, exclude=[], ctx=None, aliases=None, quiet=Fa ...@@ -661,6 +667,9 @@ def create_extension_list(patterns, exclude=[], ctx=None, aliases=None, quiet=Fa
depends = list(set(template.depends).union(set(depends))) depends = list(set(template.depends).union(set(depends)))
kwds['depends'] = depends kwds['depends'] = depends
if ext_language and 'language' not in kwds:
kwds['language'] = ext_language
module_list.append(exn_type( module_list.append(exn_type(
name=module_name, name=module_name,
sources=sources, sources=sources,
...@@ -671,7 +680,7 @@ def create_extension_list(patterns, exclude=[], ctx=None, aliases=None, quiet=Fa ...@@ -671,7 +680,7 @@ def create_extension_list(patterns, exclude=[], ctx=None, aliases=None, quiet=Fa
# This is the user-exposed entry point. # This is the user-exposed entry point.
def cythonize(module_list, exclude=[], nthreads=0, aliases=None, quiet=False, force=False, def cythonize(module_list, exclude=[], nthreads=0, aliases=None, quiet=False, force=False, language=None,
exclude_failures=False, **options): exclude_failures=False, **options):
""" """
Compile a set of source modules into C/C++ files and return a list of distutils Compile a set of source modules into C/C++ files and return a list of distutils
...@@ -684,6 +693,11 @@ def cythonize(module_list, exclude=[], nthreads=0, aliases=None, quiet=False, fo ...@@ -684,6 +693,11 @@ def cythonize(module_list, exclude=[], nthreads=0, aliases=None, quiet=False, fo
When using glob patterns, you can exclude certain module names explicitly When using glob patterns, you can exclude certain module names explicitly
by passing them into the 'exclude' option. by passing them into the 'exclude' option.
To globally enable C++ mode, you can pass language='c++'. Otherwise, this
will be determined at a per-file level based on compiler directives. This
affects only modules found based on file names. Extension instances passed
into cythonize() will not be changed.
For parallel compilation, set the 'nthreads' option to the number of For parallel compilation, set the 'nthreads' option to the number of
concurrent builds. concurrent builds.
...@@ -711,6 +725,7 @@ def cythonize(module_list, exclude=[], nthreads=0, aliases=None, quiet=False, fo ...@@ -711,6 +725,7 @@ def cythonize(module_list, exclude=[], nthreads=0, aliases=None, quiet=False, fo
ctx=ctx, ctx=ctx,
quiet=quiet, quiet=quiet,
exclude_failures=exclude_failures, exclude_failures=exclude_failures,
language=language,
aliases=aliases) aliases=aliases)
deps = create_dependency_tree(ctx, quiet=quiet) deps = create_dependency_tree(ctx, quiet=quiet)
build_dir = getattr(options, 'build_dir', None) build_dir = getattr(options, 'build_dir', None)
......
...@@ -4282,19 +4282,6 @@ class SliceNode(ExprNode): ...@@ -4282,19 +4282,6 @@ class SliceNode(ExprNode):
if self.is_literal: if self.is_literal:
code.put_giveref(self.py_result()) code.put_giveref(self.py_result())
def __deepcopy__(self, memo):
"""
There is a copy bug in python 2.4 for slice objects.
"""
return SliceNode(
self.pos,
start=copy.deepcopy(self.start, memo),
stop=copy.deepcopy(self.stop, memo),
step=copy.deepcopy(self.step, memo),
is_temp=self.is_temp,
is_literal=self.is_literal,
constant_result=self.constant_result)
class CallNode(ExprNode): class CallNode(ExprNode):
...@@ -6064,8 +6051,10 @@ class SequenceNode(ExprNode): ...@@ -6064,8 +6051,10 @@ class SequenceNode(ExprNode):
if isinstance(mult_factor.constant_result, (int,long)) \ if isinstance(mult_factor.constant_result, (int,long)) \
and mult_factor.constant_result > 0: and mult_factor.constant_result > 0:
size_factor = ' * %s' % mult_factor.constant_result size_factor = ' * %s' % mult_factor.constant_result
else: elif mult_factor.type.signed:
size_factor = ' * ((%s<0) ? 0:%s)' % (c_mult, c_mult) size_factor = ' * ((%s<0) ? 0:%s)' % (c_mult, c_mult)
else:
size_factor = ' * (%s)' % (c_mult,)
if self.type is Builtin.tuple_type and (self.is_literal or self.slow) and not c_mult: if self.type is Builtin.tuple_type and (self.is_literal or self.slow) and not c_mult:
# use PyTuple_Pack() to avoid generating huge amounts of one-time code # use PyTuple_Pack() to avoid generating huge amounts of one-time code
...@@ -7597,7 +7586,7 @@ class BoundMethodNode(ExprNode): ...@@ -7597,7 +7586,7 @@ class BoundMethodNode(ExprNode):
def generate_result_code(self, code): def generate_result_code(self, code):
code.putln( code.putln(
"%s = PyMethod_New(%s, %s, (PyObject*)%s->ob_type); %s" % ( "%s = __Pyx_PyMethod_New(%s, %s, (PyObject*)%s->ob_type); %s" % (
self.result(), self.result(),
self.function.py_result(), self.function.py_result(),
self.self_object.py_result(), self.self_object.py_result(),
...@@ -7629,7 +7618,7 @@ class UnboundMethodNode(ExprNode): ...@@ -7629,7 +7618,7 @@ class UnboundMethodNode(ExprNode):
def generate_result_code(self, code): def generate_result_code(self, code):
class_cname = code.pyclass_stack[-1].classobj.result() class_cname = code.pyclass_stack[-1].classobj.result()
code.putln( code.putln(
"%s = PyMethod_New(%s, 0, %s); %s" % ( "%s = __Pyx_PyMethod_New(%s, 0, %s); %s" % (
self.result(), self.result(),
self.function.py_result(), self.function.py_result(),
class_cname, class_cname,
......
...@@ -634,7 +634,7 @@ def check_definitions(flow, compiler_directives): ...@@ -634,7 +634,7 @@ def check_definitions(flow, compiler_directives):
for entry in flow.entries: for entry in flow.entries:
if (not entry.cf_references if (not entry.cf_references
and not entry.is_pyclass_attr): and not entry.is_pyclass_attr):
if entry.name != '_': if entry.name != '_' and not entry.name.startswith('unused'):
# '_' is often used for unused variables, e.g. in loops # '_' is often used for unused variables, e.g. in loops
if entry.is_arg: if entry.is_arg:
if warn_unused_arg: if warn_unused_arg:
......
...@@ -359,10 +359,9 @@ class Context(object): ...@@ -359,10 +359,9 @@ class Context(object):
return ".".join(names) return ".".join(names)
def setup_errors(self, options, result): def setup_errors(self, options, result):
Errors.reset() # clear any remaining error state Errors.reset() # clear any remaining error state
if options.use_listing_file: if options.use_listing_file:
result.listing_file = Utils.replace_suffix(source, ".lis") path = result.listing_file = Utils.replace_suffix(result.main_source_file, ".lis")
path = result.listing_file
else: else:
path = None path = None
Errors.open_listing_file(path=path, Errors.open_listing_file(path=path,
...@@ -499,11 +498,14 @@ class CompilationOptions(object): ...@@ -499,11 +498,14 @@ class CompilationOptions(object):
# ignore valid options that are not in the defaults # ignore valid options that are not in the defaults
unknown_options.difference_update(['include_path']) unknown_options.difference_update(['include_path'])
if unknown_options: if unknown_options:
raise ValueError("got unexpected compilation option%s: %s" % ( # TODO: make this a hard error in 0.22
message = "got unknown compilation option%s, please remove: %s" % (
's' if len(unknown_options) > 1 else '', 's' if len(unknown_options) > 1 else '',
', '.join(unknown_options))) ', '.join(unknown_options))
import warnings
warnings.warn(message)
directives = dict(options['compiler_directives']) # copy mutable field directives = dict(options['compiler_directives']) # copy mutable field
options['compiler_directives'] = directives options['compiler_directives'] = directives
if 'language_level' in directives and 'language_level' not in kw: if 'language_level' in directives and 'language_level' not in kw:
options['language_level'] = int(directives['language_level']) options['language_level'] = int(directives['language_level'])
......
...@@ -439,13 +439,16 @@ def get_is_contig_utility(c_contig, ndim): ...@@ -439,13 +439,16 @@ def get_is_contig_utility(c_contig, ndim):
return utility return utility
def copy_src_to_dst_cname(): def copy_src_to_dst_cname():
return "__pyx_memoryview_copy_contents" return "__pyx_memoryview_copy_contents"
def verify_direct_dimensions(node): def verify_direct_dimensions(node):
for access, packing in node.type.axes: for access, packing in node.type.axes:
if access != 'direct': if access != 'direct':
error(self.pos, "All dimensions must be direct") error(node.pos, "All dimensions must be direct")
def copy_broadcast_memview_src_to_dst(src, dst, code): def copy_broadcast_memview_src_to_dst(src, dst, code):
""" """
...@@ -662,7 +665,7 @@ def get_axes_specs(env, axes): ...@@ -662,7 +665,7 @@ def get_axes_specs(env, axes):
if entry.name in view_constant_to_access_packing: if entry.name in view_constant_to_access_packing:
axes_specs.append(view_constant_to_access_packing[entry.name]) axes_specs.append(view_constant_to_access_packing[entry.name])
else: else:
raise CompilerError(axis.step.pos, INVALID_ERR) raise CompileError(axis.step.pos, INVALID_ERR)
else: else:
raise CompileError(axis.step.pos, INVALID_ERR) raise CompileError(axis.step.pos, INVALID_ERR)
......
...@@ -1289,6 +1289,11 @@ class CVarDefNode(StatNode): ...@@ -1289,6 +1289,11 @@ class CVarDefNode(StatNode):
"Non-trivial type declarators in shared declaration (e.g. mix of pointers and values). " + "Non-trivial type declarators in shared declaration (e.g. mix of pointers and values). " +
"Each pointer declaration should be on its own line.", 1) "Each pointer declaration should be on its own line.", 1)
create_extern_wrapper = (self.overridable
and self.visibility == 'extern'
and env.is_module_scope)
if create_extern_wrapper:
declarator.overridable = False
if isinstance(declarator, CFuncDeclaratorNode): if isinstance(declarator, CFuncDeclaratorNode):
name_declarator, type = declarator.analyse(base_type, env, directive_locals=self.directive_locals) name_declarator, type = declarator.analyse(base_type, env, directive_locals=self.directive_locals)
else: else:
...@@ -1314,6 +1319,9 @@ class CVarDefNode(StatNode): ...@@ -1314,6 +1319,9 @@ class CVarDefNode(StatNode):
self.entry.directive_locals = copy.copy(self.directive_locals) self.entry.directive_locals = copy.copy(self.directive_locals)
if 'staticmethod' in env.directives: if 'staticmethod' in env.directives:
type.is_static_method = True type.is_static_method = True
if create_extern_wrapper:
self.entry.type.create_to_py_utility_code(env)
self.entry.create_wrapper = True
else: else:
if self.directive_locals: if self.directive_locals:
error(self.pos, "Decorators can only be followed by functions") error(self.pos, "Decorators can only be followed by functions")
...@@ -1601,7 +1609,7 @@ class FuncDefNode(StatNode, BlockNode): ...@@ -1601,7 +1609,7 @@ class FuncDefNode(StatNode, BlockNode):
if arg.name in directive_locals: if arg.name in directive_locals:
type_node = directive_locals[arg.name] type_node = directive_locals[arg.name]
other_type = type_node.analyse_as_type(env) other_type = type_node.analyse_as_type(env)
elif isinstance(arg, CArgDeclNode) and arg.annotation: elif isinstance(arg, CArgDeclNode) and arg.annotation and env.directives['annotation_typing']:
type_node = arg.annotation type_node = arg.annotation
other_type = arg.inject_type_from_annotations(env) other_type = arg.inject_type_from_annotations(env)
if other_type is None: if other_type is None:
......
...@@ -1244,7 +1244,10 @@ class CConstType(BaseType): ...@@ -1244,7 +1244,10 @@ class CConstType(BaseType):
def declaration_code(self, entity_code, def declaration_code(self, entity_code,
for_display = 0, dll_linkage = None, pyrex = 0): for_display = 0, dll_linkage = None, pyrex = 0):
return self.const_base_type.declaration_code("const %s" % entity_code, for_display, dll_linkage, pyrex) if for_display or pyrex:
return "const " + self.const_base_type.declaration_code(entity_code, for_display, dll_linkage, pyrex)
else:
return self.const_base_type.declaration_code("const %s" % entity_code, for_display, dll_linkage, pyrex)
def specialize(self, values): def specialize(self, values):
base_type = self.const_base_type.specialize(values) base_type = self.const_base_type.specialize(values)
...@@ -1539,8 +1542,10 @@ class CBIntType(CIntType): ...@@ -1539,8 +1542,10 @@ class CBIntType(CIntType):
def declaration_code(self, entity_code, def declaration_code(self, entity_code,
for_display = 0, dll_linkage = None, pyrex = 0): for_display = 0, dll_linkage = None, pyrex = 0):
if pyrex or for_display: if for_display:
base_code = 'bool' base_code = 'bool'
elif pyrex:
base_code = 'bint'
else: else:
base_code = public_decl('int', dll_linkage) base_code = public_decl('int', dll_linkage)
return self.base_declaration_code(base_code, entity_code) return self.base_declaration_code(base_code, entity_code)
...@@ -2410,6 +2415,10 @@ class CFuncType(CType): ...@@ -2410,6 +2415,10 @@ class CFuncType(CType):
return 0 return 0
if not self.same_calling_convention_as(other_type): if not self.same_calling_convention_as(other_type):
return 0 return 0
if self.exception_value != other_type.exception_value:
return 0
if self.exception_check != other_type.exception_check:
return 0
return 1 return 1
def compatible_signature_with(self, other_type, as_cmethod = 0): def compatible_signature_with(self, other_type, as_cmethod = 0):
...@@ -2444,10 +2453,14 @@ class CFuncType(CType): ...@@ -2444,10 +2453,14 @@ class CFuncType(CType):
return 0 return 0
if self.nogil != other_type.nogil: if self.nogil != other_type.nogil:
return 0 return 0
if self.exception_value != other_type.exception_value:
return 0
if not self.exception_check and other_type.exception_check:
# a redundant exception check doesn't make functions incompatible, but a missing one does
return 0
self.original_sig = other_type.original_sig or other_type self.original_sig = other_type.original_sig or other_type
return 1 return 1
def narrower_c_signature_than(self, other_type, as_cmethod = 0): def narrower_c_signature_than(self, other_type, as_cmethod = 0):
return self.narrower_c_signature_than_resolved_type(other_type.resolve(), as_cmethod) return self.narrower_c_signature_than_resolved_type(other_type.resolve(), as_cmethod)
...@@ -2471,6 +2484,11 @@ class CFuncType(CType): ...@@ -2471,6 +2484,11 @@ class CFuncType(CType):
return 0 return 0
if not self.return_type.subtype_of_resolved_type(other_type.return_type): if not self.return_type.subtype_of_resolved_type(other_type.return_type):
return 0 return 0
if self.exception_value != other_type.exception_value:
return 0
if not self.exception_check and other_type.exception_check:
# a redundant exception check doesn't make functions incompatible, but a missing one does
return 0
return 1 return 1
def same_calling_convention_as(self, other): def same_calling_convention_as(self, other):
...@@ -2487,22 +2505,12 @@ class CFuncType(CType): ...@@ -2487,22 +2505,12 @@ class CFuncType(CType):
sc2 = other.calling_convention == '__stdcall' sc2 = other.calling_convention == '__stdcall'
return sc1 == sc2 return sc1 == sc2
def same_exception_signature_as(self, other_type):
return self.same_exception_signature_as_resolved_type(
other_type.resolve())
def same_exception_signature_as_resolved_type(self, other_type):
return self.exception_value == other_type.exception_value \
and self.exception_check == other_type.exception_check
def same_as_resolved_type(self, other_type, as_cmethod = 0): def same_as_resolved_type(self, other_type, as_cmethod = 0):
return self.same_c_signature_as_resolved_type(other_type, as_cmethod) \ return self.same_c_signature_as_resolved_type(other_type, as_cmethod) \
and self.same_exception_signature_as_resolved_type(other_type) \
and self.nogil == other_type.nogil and self.nogil == other_type.nogil
def pointer_assignable_from_resolved_type(self, other_type): def pointer_assignable_from_resolved_type(self, other_type):
return self.same_c_signature_as_resolved_type(other_type) \ return self.same_c_signature_as_resolved_type(other_type) \
and self.same_exception_signature_as_resolved_type(other_type) \
and not (self.nogil and not other_type.nogil) and not (self.nogil and not other_type.nogil)
def declaration_code(self, entity_code, def declaration_code(self, entity_code,
...@@ -2649,6 +2657,74 @@ class CFuncType(CType): ...@@ -2649,6 +2657,74 @@ class CFuncType(CType):
assert not self.is_fused assert not self.is_fused
specialize_entry(entry, cname) specialize_entry(entry, cname)
def create_to_py_utility_code(self, env):
# FIXME: it seems we're trying to coerce in more cases than we should
if self.has_varargs or self.optional_arg_count:
return False
if self.to_py_function is not None:
return self.to_py_function
from .UtilityCode import CythonUtilityCode
import re
safe_typename = re.sub('[^a-zA-Z0-9]', '__', self.declaration_code("", pyrex=1))
to_py_function = "__Pyx_CFunc_%s_to_py" % safe_typename
for arg in self.args:
if not arg.type.is_pyobject and not arg.type.create_from_py_utility_code(env):
return False
if not (self.return_type.is_pyobject or self.return_type.is_void or
self.return_type.create_to_py_utility_code(env)):
return False
def declared_type(ctype):
type_displayname = str(ctype.declaration_code("", for_display=True))
if ctype.is_pyobject:
arg_ctype = type_name = type_displayname
if ctype.is_builtin_type:
arg_ctype = ctype.name
elif not ctype.is_extension_type:
type_name = 'object'
type_displayname = None
else:
type_displayname = repr(type_displayname)
elif ctype is c_bint_type:
type_name = arg_ctype = 'bint'
else:
type_name = arg_ctype = type_displayname
if ctype is c_double_type:
type_displayname = 'float'
else:
type_displayname = repr(type_displayname)
return type_name, arg_ctype, type_displayname
class Arg(object):
def __init__(self, arg_name, arg_type):
self.name = arg_name
self.type = arg_type
self.type_cname, self.ctype, self.type_displayname = declared_type(arg_type)
if self.return_type.is_void:
except_clause = 'except *'
elif self.return_type.is_pyobject:
except_clause = ''
elif self.exception_value:
except_clause = ('except? %s' if self.exception_check else 'except %s') % self.exception_value
else:
except_clause = 'except *'
context = {
'cname': to_py_function,
'args': [Arg(arg.name or 'arg%s' % ix, arg.type) for ix, arg in enumerate(self.args)],
'return_type': Arg('return', self.return_type),
'except_clause': except_clause,
}
# FIXME: directives come from first defining environment and do not adapt for reuse
env.use_utility_code(CythonUtilityCode.load(
"cfunc.to_py", "CFuncConvert.pyx",
outer_module_scope=env.global_scope(), # need access to types declared in module
context=context, compiler_directives=dict(env.directives)))
self.to_py_function = to_py_function
return True
def specialize_entry(entry, cname): def specialize_entry(entry, cname):
""" """
...@@ -3161,7 +3237,7 @@ class CppClassType(CType): ...@@ -3161,7 +3237,7 @@ class CppClassType(CType):
if self == actual: if self == actual:
return {} return {}
# TODO(robertwb): Actual type equality. # TODO(robertwb): Actual type equality.
elif self.empty_declaration_code() == actual.template_type.declaration_code(""): elif self.empty_declaration_code() == actual.template_type.empty_declaration_code():
return reduce( return reduce(
merge_template_deductions, merge_template_deductions,
[formal_param.deduce_template_params(actual_param) for (formal_param, actual_param) in zip(self.templates, actual.templates)], [formal_param.deduce_template_params(actual_param) for (formal_param, actual_param) in zip(self.templates, actual.templates)],
......
...@@ -4,10 +4,14 @@ import cython ...@@ -4,10 +4,14 @@ import cython
from ..Plex.Scanners cimport Scanner from ..Plex.Scanners cimport Scanner
cdef get_lexicon()
cdef initial_compile_time_env()
cdef class Method: cdef class Method:
cdef object name cdef object name
cdef object __name__ cdef object __name__
@cython.final
cdef class CompileTimeScope: cdef class CompileTimeScope:
cdef public dict entries cdef public dict entries
cdef public CompileTimeScope outer cdef public CompileTimeScope outer
...@@ -15,6 +19,7 @@ cdef class CompileTimeScope: ...@@ -15,6 +19,7 @@ cdef class CompileTimeScope:
cdef lookup_here(self, name) cdef lookup_here(self, name)
cpdef lookup(self, name) cpdef lookup(self, name)
@cython.final
cdef class PyrexScanner(Scanner): cdef class PyrexScanner(Scanner):
cdef public context cdef public context
cdef public list included_files cdef public list included_files
......
...@@ -5,13 +5,15 @@ ...@@ -5,13 +5,15 @@
from __future__ import absolute_import from __future__ import absolute_import
import cython
cython.declare(EncodedString=object, make_lexicon=object, lexicon=object,
any_string_prefix=unicode, IDENT=unicode,
print_function=object, error=object, warning=object,
os=object, platform=object)
import os import os
import platform import platform
import cython
cython.declare(EncodedString=object, any_string_prefix=unicode, IDENT=unicode,
print_function=object, error=object, warning=object)
from .. import Utils from .. import Utils
from ..Plex.Scanners import Scanner from ..Plex.Scanners import Scanner
from ..Plex.Errors import UnrecognizedInput from ..Plex.Errors import UnrecognizedInput
...@@ -28,12 +30,14 @@ scanner_dump_file = None ...@@ -28,12 +30,14 @@ scanner_dump_file = None
lexicon = None lexicon = None
def get_lexicon(): def get_lexicon():
global lexicon global lexicon
if not lexicon: if not lexicon:
lexicon = make_lexicon() lexicon = make_lexicon()
return lexicon return lexicon
#------------------------------------------------------------------ #------------------------------------------------------------------
py_reserved_words = [ py_reserved_words = [
...@@ -49,15 +53,17 @@ pyx_reserved_words = py_reserved_words + [ ...@@ -49,15 +53,17 @@ pyx_reserved_words = py_reserved_words + [
"cimport", "DEF", "IF", "ELIF", "ELSE" "cimport", "DEF", "IF", "ELIF", "ELSE"
] ]
class Method(object): class Method(object):
def __init__(self, name): def __init__(self, name):
self.name = name self.name = name
self.__name__ = name # for Plex tracing self.__name__ = name # for Plex tracing
def __call__(self, stream, text): def __call__(self, stream, text):
return getattr(stream, self.name)(text) return getattr(stream, self.name)(text)
#------------------------------------------------------------------ #------------------------------------------------------------------
class CompileTimeScope(object): class CompileTimeScope(object):
...@@ -88,6 +94,7 @@ class CompileTimeScope(object): ...@@ -88,6 +94,7 @@ class CompileTimeScope(object):
else: else:
raise raise
def initial_compile_time_env(): def initial_compile_time_env():
benv = CompileTimeScope() benv = CompileTimeScope()
names = ('UNAME_SYSNAME', 'UNAME_NODENAME', 'UNAME_RELEASE', names = ('UNAME_SYSNAME', 'UNAME_NODENAME', 'UNAME_RELEASE',
...@@ -116,6 +123,7 @@ def initial_compile_time_env(): ...@@ -116,6 +123,7 @@ def initial_compile_time_env():
denv = CompileTimeScope(benv) denv = CompileTimeScope(benv)
return denv return denv
#------------------------------------------------------------------ #------------------------------------------------------------------
class SourceDescriptor(object): class SourceDescriptor(object):
...@@ -166,6 +174,7 @@ class SourceDescriptor(object): ...@@ -166,6 +174,7 @@ class SourceDescriptor(object):
except AttributeError: except AttributeError:
return False return False
class FileSourceDescriptor(SourceDescriptor): class FileSourceDescriptor(SourceDescriptor):
""" """
Represents a code source. A code source is a more generic abstraction Represents a code source. A code source is a more generic abstraction
...@@ -235,6 +244,7 @@ class FileSourceDescriptor(SourceDescriptor): ...@@ -235,6 +244,7 @@ class FileSourceDescriptor(SourceDescriptor):
def __repr__(self): def __repr__(self):
return "<FileSourceDescriptor:%s>" % self.filename return "<FileSourceDescriptor:%s>" % self.filename
class StringSourceDescriptor(SourceDescriptor): class StringSourceDescriptor(SourceDescriptor):
""" """
Instances of this class can be used instead of a filenames if the Instances of this class can be used instead of a filenames if the
...@@ -275,6 +285,7 @@ class StringSourceDescriptor(SourceDescriptor): ...@@ -275,6 +285,7 @@ class StringSourceDescriptor(SourceDescriptor):
def __repr__(self): def __repr__(self):
return "<StringSourceDescriptor:%s>" % self.name return "<StringSourceDescriptor:%s>" % self.name
#------------------------------------------------------------------ #------------------------------------------------------------------
class PyrexScanner(Scanner): class PyrexScanner(Scanner):
...@@ -284,8 +295,8 @@ class PyrexScanner(Scanner): ...@@ -284,8 +295,8 @@ class PyrexScanner(Scanner):
# compile_time_eval boolean In a true conditional compilation context # compile_time_eval boolean In a true conditional compilation context
# compile_time_expr boolean In a compile-time expression context # compile_time_expr boolean In a compile-time expression context
def __init__(self, file, filename, parent_scanner = None, def __init__(self, file, filename, parent_scanner=None,
scope = None, context = None, source_encoding=None, parse_comments=True, initial_pos=None): scope=None, context=None, source_encoding=None, parse_comments=True, initial_pos=None):
Scanner.__init__(self, get_lexicon(), file, filename, initial_pos) Scanner.__init__(self, get_lexicon(), file, filename, initial_pos)
if parent_scanner: if parent_scanner:
self.context = parent_scanner.context self.context = parent_scanner.context
...@@ -299,8 +310,7 @@ class PyrexScanner(Scanner): ...@@ -299,8 +310,7 @@ class PyrexScanner(Scanner):
self.compile_time_env = initial_compile_time_env() self.compile_time_env = initial_compile_time_env()
self.compile_time_eval = 1 self.compile_time_eval = 1
self.compile_time_expr = 0 self.compile_time_expr = 0
if hasattr(context.options, 'compile_time_env') and \ if getattr(context.options, 'compile_time_env', None):
context.options.compile_time_env is not None:
self.compile_time_env.update(context.options.compile_time_env) self.compile_time_env.update(context.options.compile_time_env)
self.parse_comments = parse_comments self.parse_comments = parse_comments
self.source_encoding = source_encoding self.source_encoding = source_encoding
...@@ -326,11 +336,11 @@ class PyrexScanner(Scanner): ...@@ -326,11 +336,11 @@ class PyrexScanner(Scanner):
return self.indentation_stack[-1] return self.indentation_stack[-1]
def open_bracket_action(self, text): def open_bracket_action(self, text):
self.bracket_nesting_level = self.bracket_nesting_level + 1 self.bracket_nesting_level += 1
return text return text
def close_bracket_action(self, text): def close_bracket_action(self, text):
self.bracket_nesting_level = self.bracket_nesting_level - 1 self.bracket_nesting_level -= 1
return text return text
def newline_action(self, text): def newline_action(self, text):
...@@ -406,6 +416,7 @@ class PyrexScanner(Scanner): ...@@ -406,6 +416,7 @@ class PyrexScanner(Scanner):
sy, systring = self.read() sy, systring = self.read()
except UnrecognizedInput: except UnrecognizedInput:
self.error("Unrecognized character") self.error("Unrecognized character")
return # just a marker, error() always raises
if sy == IDENT: if sy == IDENT:
if systring in self.keywords: if systring in self.keywords:
if systring == u'print' and print_function in self.context.future_directives: if systring == u'print' and print_function in self.context.future_directives:
...@@ -445,21 +456,21 @@ class PyrexScanner(Scanner): ...@@ -445,21 +456,21 @@ class PyrexScanner(Scanner):
# This method should be added to Plex # This method should be added to Plex
self.queue.insert(0, (token, value)) self.queue.insert(0, (token, value))
def error(self, message, pos = None, fatal = True): def error(self, message, pos=None, fatal=True):
if pos is None: if pos is None:
pos = self.position() pos = self.position()
if self.sy == 'INDENT': if self.sy == 'INDENT':
err = error(pos, "Possible inconsistent indentation") error(pos, "Possible inconsistent indentation")
err = error(pos, message) err = error(pos, message)
if fatal: raise err if fatal: raise err
def expect(self, what, message = None): def expect(self, what, message=None):
if self.sy == what: if self.sy == what:
self.next() self.next()
else: else:
self.expected(what, message) self.expected(what, message)
def expect_keyword(self, what, message = None): def expect_keyword(self, what, message=None):
if self.sy == IDENT and self.systring == what: if self.sy == IDENT and self.systring == what:
self.next() self.next()
else: else:
...@@ -476,12 +487,10 @@ class PyrexScanner(Scanner): ...@@ -476,12 +487,10 @@ class PyrexScanner(Scanner):
self.error("Expected '%s', found '%s'" % (what, found)) self.error("Expected '%s', found '%s'" % (what, found))
def expect_indent(self): def expect_indent(self):
self.expect('INDENT', self.expect('INDENT', "Expected an increase in indentation level")
"Expected an increase in indentation level")
def expect_dedent(self): def expect_dedent(self):
self.expect('DEDENT', self.expect('DEDENT', "Expected a decrease in indentation level")
"Expected a decrease in indentation level")
def expect_newline(self, message="Expected a newline", ignore_semicolon=False): def expect_newline(self, message="Expected a newline", ignore_semicolon=False):
# Expect either a newline or end of file # Expect either a newline or end of file
......
...@@ -303,7 +303,7 @@ class Scope(object): ...@@ -303,7 +303,7 @@ class Scope(object):
self.name = name self.name = name
self.outer_scope = outer_scope self.outer_scope = outer_scope
self.parent_scope = parent_scope self.parent_scope = parent_scope
mangled_name = "%d%s_" % (len(name), name) mangled_name = "%d%s_" % (len(name), name.replace('.', '_dot_'))
qual_scope = self.qualifying_scope() qual_scope = self.qualifying_scope()
if qual_scope: if qual_scope:
self.qualified_name = qual_scope.qualify_name(name) self.qualified_name = qual_scope.qualify_name(name)
...@@ -1044,15 +1044,13 @@ class ModuleScope(Scope): ...@@ -1044,15 +1044,13 @@ class ModuleScope(Scope):
def global_scope(self): def global_scope(self):
return self return self
def lookup(self, name): def lookup(self, name, language_level=None):
entry = self.lookup_here(name) entry = self.lookup_here(name)
if entry is not None: if entry is not None:
return entry return entry
if self.context is not None: if language_level is None:
language_level = self.context.language_level language_level = self.context.language_level if self.context is not None else 3
else:
language_level = 3
return self.outer_scope.lookup(name, language_level=language_level) return self.outer_scope.lookup(name, language_level=language_level)
......
...@@ -23,16 +23,19 @@ from . import UtilNodes ...@@ -23,16 +23,19 @@ from . import UtilNodes
class StringParseContext(Main.Context): class StringParseContext(Main.Context):
def __init__(self, name, include_directories=None): def __init__(self, name, include_directories=None, compiler_directives=None):
if include_directories is None: include_directories = [] if include_directories is None:
Main.Context.__init__(self, include_directories, {}, include_directories = []
if compiler_directives is None:
compiler_directives = {}
Main.Context.__init__(self, include_directories, compiler_directives,
create_testscope=False) create_testscope=False)
self.module_name = name self.module_name = name
def find_module(self, module_name, relative_to = None, pos = None, need_pxd = 1): def find_module(self, module_name, relative_to=None, pos=None, need_pxd=1):
if module_name not in (self.module_name, 'cython'): if module_name not in (self.module_name, 'cython'):
raise AssertionError("Not yet supporting any cimports/includes from string code snippets") raise AssertionError("Not yet supporting any cimports/includes from string code snippets")
return ModuleScope(module_name, parent_module = None, context = self) return ModuleScope(module_name, parent_module=None, context=self)
def parse_from_strings(name, code, pxds={}, level=None, initial_pos=None, def parse_from_strings(name, code, pxds={}, level=None, initial_pos=None,
...@@ -64,7 +67,7 @@ def parse_from_strings(name, code, pxds={}, level=None, initial_pos=None, ...@@ -64,7 +67,7 @@ def parse_from_strings(name, code, pxds={}, level=None, initial_pos=None,
initial_pos = (name, 1, 0) initial_pos = (name, 1, 0)
code_source = StringSourceDescriptor(name, code) code_source = StringSourceDescriptor(name, code)
scope = context.find_module(module_name, pos = initial_pos, need_pxd = 0) scope = context.find_module(module_name, pos=initial_pos, need_pxd=False)
buf = StringIO(code) buf = StringIO(code)
...@@ -190,20 +193,27 @@ class TemplateTransform(VisitorTransform): ...@@ -190,20 +193,27 @@ class TemplateTransform(VisitorTransform):
else: else:
return self.visit_Node(node) return self.visit_Node(node)
def copy_code_tree(node): def copy_code_tree(node):
return TreeCopier()(node) return TreeCopier()(node)
INDENT_RE = re.compile(ur"^ *")
_match_indent = re.compile(ur"^ *").match
def strip_common_indent(lines): def strip_common_indent(lines):
"Strips empty lines and common indentation from the list of strings given in lines" """Strips empty lines and common indentation from the list of strings given in lines"""
# TODO: Facilitate textwrap.indent instead # TODO: Facilitate textwrap.indent instead
lines = [x for x in lines if x.strip() != u""] lines = [x for x in lines if x.strip() != u""]
minindent = min([len(INDENT_RE.match(x).group(0)) for x in lines]) minindent = min([len(_match_indent(x).group(0)) for x in lines])
lines = [x[minindent:] for x in lines] lines = [x[minindent:] for x in lines]
return lines return lines
class TreeFragment(object): class TreeFragment(object):
def __init__(self, code, name="(tree fragment)", pxds={}, temps=[], pipeline=[], level=None, initial_pos=None): def __init__(self, code, name=None, pxds={}, temps=[], pipeline=[], level=None, initial_pos=None):
if not name:
name = "(tree fragment)"
if isinstance(code, unicode): if isinstance(code, unicode):
def fmt(x): return u"\n".join(strip_common_indent(x.split(u"\n"))) def fmt(x): return u"\n".join(strip_common_indent(x.split(u"\n")))
......
...@@ -494,24 +494,22 @@ def find_spanning_type(type1, type2): ...@@ -494,24 +494,22 @@ def find_spanning_type(type1, type2):
return PyrexTypes.c_double_type return PyrexTypes.c_double_type
return result_type return result_type
def aggressive_spanning_type(types, might_overflow, pos): def simply_type(result_type, pos):
result_type = reduce(find_spanning_type, types)
if result_type.is_reference: if result_type.is_reference:
result_type = result_type.ref_base_type result_type = result_type.ref_base_type
if result_type.is_const: if result_type.is_const:
result_type = result_type.const_base_type result_type = result_type.const_base_type
if result_type.is_cpp_class: if result_type.is_cpp_class:
result_type.check_nullary_constructor(pos) result_type.check_nullary_constructor(pos)
if result_type.is_array:
result_type = PyrexTypes.c_ptr_type(result_type.base_type)
return result_type return result_type
def aggressive_spanning_type(types, might_overflow, pos):
return simply_type(reduce(find_spanning_type, types), pos)
def safe_spanning_type(types, might_overflow, pos): def safe_spanning_type(types, might_overflow, pos):
result_type = reduce(find_spanning_type, types) result_type = simply_type(reduce(find_spanning_type, types), pos)
if result_type.is_const:
result_type = result_type.const_base_type
if result_type.is_reference:
result_type = result_type.ref_base_type
if result_type.is_cpp_class:
result_type.check_nullary_constructor(pos)
if result_type.is_pyobject: if result_type.is_pyobject:
# In theory, any specific Python type is always safe to # In theory, any specific Python type is always safe to
# infer. However, inferring str can cause some existing code # infer. However, inferring str can cause some existing code
......
...@@ -8,6 +8,8 @@ from . import Code ...@@ -8,6 +8,8 @@ from . import Code
class NonManglingModuleScope(Symtab.ModuleScope): class NonManglingModuleScope(Symtab.ModuleScope):
cpp = False
def __init__(self, prefix, *args, **kw): def __init__(self, prefix, *args, **kw):
self.prefix = prefix self.prefix = prefix
self.cython_scope = None self.cython_scope = None
...@@ -28,12 +30,11 @@ class NonManglingModuleScope(Symtab.ModuleScope): ...@@ -28,12 +30,11 @@ class NonManglingModuleScope(Symtab.ModuleScope):
else: else:
return Symtab.ModuleScope.mangle(self, prefix) return Symtab.ModuleScope.mangle(self, prefix)
class CythonUtilityCodeContext(StringParseContext): class CythonUtilityCodeContext(StringParseContext):
scope = None scope = None
def find_module(self, module_name, relative_to = None, pos = None, def find_module(self, module_name, relative_to=None, pos=None, need_pxd=True):
need_pxd = 1):
if module_name != self.module_name: if module_name != self.module_name:
if module_name not in self.modules: if module_name not in self.modules:
raise AssertionError("Only the cython cimport is supported.") raise AssertionError("Only the cython cimport is supported.")
...@@ -41,10 +42,8 @@ class CythonUtilityCodeContext(StringParseContext): ...@@ -41,10 +42,8 @@ class CythonUtilityCodeContext(StringParseContext):
return self.modules[module_name] return self.modules[module_name]
if self.scope is None: if self.scope is None:
self.scope = NonManglingModuleScope(self.prefix, self.scope = NonManglingModuleScope(
module_name, self.prefix, module_name, parent_module=None, context=self)
parent_module=None,
context=self)
return self.scope return self.scope
...@@ -69,7 +68,8 @@ class CythonUtilityCode(Code.UtilityCodeBase): ...@@ -69,7 +68,8 @@ class CythonUtilityCode(Code.UtilityCodeBase):
is_cython_utility = True is_cython_utility = True
def __init__(self, impl, name="__pyxutil", prefix="", requires=None, def __init__(self, impl, name="__pyxutil", prefix="", requires=None,
file=None, from_scope=None, context=None): file=None, from_scope=None, context=None, compiler_directives=None,
outer_module_scope=None):
# 1) We need to delay the parsing/processing, so that all modules can be # 1) We need to delay the parsing/processing, so that all modules can be
# imported without import loops # imported without import loops
# 2) The same utility code object can be used for multiple source files; # 2) The same utility code object can be used for multiple source files;
...@@ -84,6 +84,20 @@ class CythonUtilityCode(Code.UtilityCodeBase): ...@@ -84,6 +84,20 @@ class CythonUtilityCode(Code.UtilityCodeBase):
self.prefix = prefix self.prefix = prefix
self.requires = requires or [] self.requires = requires or []
self.from_scope = from_scope self.from_scope = from_scope
self.outer_module_scope = outer_module_scope
self.compiler_directives = compiler_directives
def __eq__(self, other):
if isinstance(other, CythonUtilityCode):
return self._equality_params() == other._equality_params()
else:
return False
def _equality_params(self):
return self.impl, self.outer_module_scope, self.compiler_directives
def __hash__(self):
return hash(self.impl)
def get_tree(self, entries_only=False, cython_scope=None): def get_tree(self, entries_only=False, cython_scope=None):
from .AnalysedTreeTransforms import AutoTestDictTransform from .AnalysedTreeTransforms import AutoTestDictTransform
...@@ -93,12 +107,13 @@ class CythonUtilityCode(Code.UtilityCodeBase): ...@@ -93,12 +107,13 @@ class CythonUtilityCode(Code.UtilityCodeBase):
excludes = [AutoTestDictTransform] excludes = [AutoTestDictTransform]
from . import Pipeline, ParseTreeTransforms from . import Pipeline, ParseTreeTransforms
context = CythonUtilityCodeContext(self.name) context = CythonUtilityCodeContext(
self.name, compiler_directives=self.compiler_directives)
context.prefix = self.prefix context.prefix = self.prefix
context.cython_scope = cython_scope context.cython_scope = cython_scope
#context = StringParseContext(self.name) #context = StringParseContext(self.name)
tree = parse_from_strings(self.name, self.impl, context=context, tree = parse_from_strings(
allow_struct_enum_decorator=True) self.name, self.impl, context=context, allow_struct_enum_decorator=True)
pipeline = Pipeline.create_pipeline(context, 'pyx', exclude_classes=excludes) pipeline = Pipeline.create_pipeline(context, 'pyx', exclude_classes=excludes)
if entries_only: if entries_only:
...@@ -126,6 +141,16 @@ class CythonUtilityCode(Code.UtilityCodeBase): ...@@ -126,6 +141,16 @@ class CythonUtilityCode(Code.UtilityCodeBase):
pipeline = Pipeline.insert_into_pipeline(pipeline, scope_transform, pipeline = Pipeline.insert_into_pipeline(pipeline, scope_transform,
before=transform) before=transform)
if self.outer_module_scope:
# inject outer module between utility code module and builtin module
def scope_transform(module_node):
module_node.scope.outer_scope = self.outer_module_scope
return module_node
transform = ParseTreeTransforms.AnalyseDeclarationsTransform
pipeline = Pipeline.insert_into_pipeline(pipeline, scope_transform,
before=transform)
(err, tree) = Pipeline.run_pipeline(pipeline, tree, printtree=False) (err, tree) = Pipeline.run_pipeline(pipeline, tree, printtree=False)
assert not err, err assert not err, err
return tree return tree
......
This diff is collapsed.
# http://en.wikipedia.org/wiki/C_date_and_time_functions
from libc.stddef cimport wchar_t
cdef extern from "time.h" nogil:
ctypedef long clock_t
ctypedef long time_t
enum: CLOCKS_PER_SEC
clock_t clock() # CPU time
time_t time(time_t *) # wall clock time since Unix epoch
cdef struct tm:
int tm_sec
int tm_min
int tm_hour
int tm_mday
int tm_mon
int tm_year
int tm_wday
int tm_yday
int tm_isdst
char *tm_zone
long tm_gmtoff
int daylight # global state
long timezone
char *tzname[2]
void tzset()
char *asctime(const tm *)
char *asctime_r(const tm *, char *)
char *ctime(const time_t *)
char *ctime_r(const time_t *, char *)
double difftime(time_t, time_t)
tm *getdate(const char *)
tm *gmtime(const time_t *)
tm *gmtime_r(const time_t *, tm *)
tm *localtime(const time_t *)
tm *localtime_r(const time_t *, tm *)
time_t mktime(tm *)
size_t strftime(char *, size_t, const char *, const tm *)
size_t wcsftime(wchar_t *str, size_t cnt, const wchar_t *fmt, tm *time)
# POSIX not stdC
char *strptime(const char *, const char *, tm *)
# http://pubs.opengroup.org/onlinepubs/009695399/basedefs/sys/resource.h.html # http://pubs.opengroup.org/onlinepubs/009695399/basedefs/sys/resource.h.html
from posix.sys_time cimport timeval from posix.time cimport timeval
from posix.types cimport id_t from posix.types cimport id_t
cdef extern from "sys/resource.h" nogil: cdef extern from "sys/resource.h" nogil:
......
# http://pubs.opengroup.org/onlinepubs/009695399/basedefs/sys/time.h.html
from posix.types cimport suseconds_t, time_t
cdef extern from "sys/time.h" nogil:
enum: ITIMER_REAL
enum: ITIMER_VIRTUAL
enum: ITIMER_PROF
cdef struct timezone:
int tz_minuteswest
int dsttime
cdef struct timeval:
time_t tv_sec
suseconds_t tv_usec
cdef struct itimerval:
timeval it_interval
timeval it_value
int getitimer(int, itimerval *)
int gettimeofday(timeval *tp, timezone *tzp)
int setitimer(int, const itimerval *, itimerval *)
# http://pubs.opengroup.org/onlinepubs/009695399/basedefs/sys/time.h.html # http://pubs.opengroup.org/onlinepubs/009695399/basedefs/sys/time.h.html
from posix.types cimport suseconds_t, time_t, clockid_t, timer_t
from posix.signal cimport sigevent from posix.signal cimport sigevent
from posix.types cimport clock_t, clockid_t, suseconds_t, time_t, timer_t
cdef extern from "time.h" nogil: cdef extern from "sys/time.h" nogil:
enum: CLOCKS_PER_SEC
enum: CLOCK_PROCESS_CPUTIME_ID enum: CLOCK_PROCESS_CPUTIME_ID
enum: CLOCK_THREAD_CPUTIME_ID enum: CLOCK_THREAD_CPUTIME_ID
...@@ -33,55 +31,44 @@ cdef extern from "time.h" nogil: ...@@ -33,55 +31,44 @@ cdef extern from "time.h" nogil:
enum: CLOCK_REALTIME_ALARM enum: CLOCK_REALTIME_ALARM
enum: CLOCK_BOOTTIME_ALARM enum: CLOCK_BOOTTIME_ALARM
enum: ITIMER_REAL
enum: ITIMER_VIRTUAL
enum: ITIMER_PROF
cdef struct timezone:
int tz_minuteswest
int dsttime
cdef struct timeval:
time_t tv_sec
suseconds_t tv_usec
cdef struct timespec: cdef struct timespec:
time_t tv_sec time_t tv_sec
long tv_nsec long tv_nsec
cdef struct itimerval:
timeval it_interval
timeval it_value
cdef struct itimerspec: cdef struct itimerspec:
timespec it_interval timespec it_interval
timespec it_value timespec it_value
cdef struct tm: int nanosleep(const timespec *, timespec *)
int tm_sec
int tm_min int getitimer(int, itimerval *)
int tm_hour int gettimeofday(timeval *tp, timezone *tzp)
int tm_mday int setitimer(int, const itimerval *, itimerval *)
int tm_mon
int tm_year
int tm_wday
int tm_yday
int tm_isdst
char *tm_zone
long tm_gmtoff
char *asctime(const tm *) int clock_getcpuclockid(pid_t, clockid_t *)
char *asctime_r(const tm *, char *) int clock_getres(clockid_t, timespec *)
clock_t clock() int clock_gettime(clockid_t, timespec *)
int clock_getcpuclockid(pid_t, clockid_t *) int clock_nanosleep(clockid_t, int, const timespec *, timespec *)
int clock_getres(clockid_t, timespec *) int clock_settime(clockid_t, const timespec *)
int clock_gettime(clockid_t, timespec *)
int clock_nanosleep(clockid_t, int, const timespec *, timespec *)
int clock_settime(clockid_t, const timespec *)
char *ctime(const time_t *)
char *ctime_r(const time_t *, char *)
double difftime(time_t, time_t)
tm *getdate(const char *)
tm *gmtime(const time_t *)
tm *gmtime_r(const time_t *, tm *)
tm *localtime(const time_t *)
tm *localtime_r(const time_t *, tm *)
time_t mktime(tm *)
int nanosleep(const timespec *, timespec *)
size_t strftime(char *, size_t, const char *, const tm *)
char *strptime(const char *, const char *, tm *)
time_t time(time_t *)
int timer_create(clockid_t, sigevent *, timer_t *)
int timer_delete(timer_t)
int timer_gettime(timer_t, itimerspec *)
int timer_getoverrun(timer_t)
int timer_settime(timer_t, int, const itimerspec *, itimerspec *)
void tzset()
int daylight int timer_create(clockid_t, sigevent *, timer_t *)
long timezone int timer_delete(timer_t)
char *tzname[2] int timer_gettime(timer_t, itimerspec *)
int timer_getoverrun(timer_t)
int timer_settime(timer_t, int, const itimerspec *, itimerspec *)
cdef extern from "sys/types.h": cdef extern from "sys/types.h":
ctypedef long blkcnt_t ctypedef long blkcnt_t
ctypedef long blksize_t ctypedef long blksize_t
ctypedef long clock_t
ctypedef long clockid_t ctypedef long clockid_t
ctypedef long dev_t ctypedef long dev_t
ctypedef long gid_t ctypedef long gid_t
......
...@@ -7,98 +7,101 @@ ...@@ -7,98 +7,101 @@
#======================================================================= #=======================================================================
class Action(object): class Action(object):
def perform(self, token_stream, text):
pass # abstract
def perform(self, token_stream, text): def same_as(self, other):
pass # abstract return self is other
def same_as(self, other):
return self is other
class Return(Action): class Return(Action):
""" """
Internal Plex action which causes |value| to Internal Plex action which causes |value| to
be returned as the value of the associated token be returned as the value of the associated token
""" """
def __init__(self, value): def __init__(self, value):
self.value = value self.value = value
def perform(self, token_stream, text): def perform(self, token_stream, text):
return self.value return self.value
def same_as(self, other): def same_as(self, other):
return isinstance(other, Return) and self.value == other.value return isinstance(other, Return) and self.value == other.value
def __repr__(self): def __repr__(self):
return "Return(%s)" % repr(self.value) return "Return(%s)" % repr(self.value)
class Call(Action): class Call(Action):
""" """
Internal Plex action which causes a function to be called. Internal Plex action which causes a function to be called.
""" """
def __init__(self, function): def __init__(self, function):
self.function = function self.function = function
def perform(self, token_stream, text): def perform(self, token_stream, text):
return self.function(token_stream, text) return self.function(token_stream, text)
def __repr__(self): def __repr__(self):
return "Call(%s)" % self.function.__name__ return "Call(%s)" % self.function.__name__
def same_as(self, other): def same_as(self, other):
return isinstance(other, Call) and self.function is other.function return isinstance(other, Call) and self.function is other.function
class Begin(Action): class Begin(Action):
""" """
Begin(state_name) is a Plex action which causes the Scanner to Begin(state_name) is a Plex action which causes the Scanner to
enter the state |state_name|. See the docstring of Plex.Lexicon enter the state |state_name|. See the docstring of Plex.Lexicon
for more information. for more information.
""" """
def __init__(self, state_name): def __init__(self, state_name):
self.state_name = state_name self.state_name = state_name
def perform(self, token_stream, text): def perform(self, token_stream, text):
token_stream.begin(self.state_name) token_stream.begin(self.state_name)
def __repr__(self): def __repr__(self):
return "Begin(%s)" % self.state_name return "Begin(%s)" % self.state_name
def same_as(self, other): def same_as(self, other):
return isinstance(other, Begin) and self.state_name == other.state_name return isinstance(other, Begin) and self.state_name == other.state_name
class Ignore(Action): class Ignore(Action):
""" """
IGNORE is a Plex action which causes its associated token IGNORE is a Plex action which causes its associated token
to be ignored. See the docstring of Plex.Lexicon for more to be ignored. See the docstring of Plex.Lexicon for more
information. information.
""" """
def perform(self, token_stream, text):
return None def perform(self, token_stream, text):
return None
def __repr__(self):
return "IGNORE"
def __repr__(self):
return "IGNORE"
IGNORE = Ignore() IGNORE = Ignore()
#IGNORE.__doc__ = Ignore.__doc__ #IGNORE.__doc__ = Ignore.__doc__
class Text(Action): class Text(Action):
""" """
TEXT is a Plex action which causes the text of a token to TEXT is a Plex action which causes the text of a token to
be returned as the value of the token. See the docstring of be returned as the value of the token. See the docstring of
Plex.Lexicon for more information. Plex.Lexicon for more information.
""" """
def perform(self, token_stream, text):
return text
def perform(self, token_stream, text): def __repr__(self):
return text return "TEXT"
def __repr__(self):
return "TEXT"
TEXT = Text() TEXT = Text()
#TEXT.__doc__ = Text.__doc__ #TEXT.__doc__ = Text.__doc__
......
This diff is collapsed.
...@@ -6,45 +6,49 @@ ...@@ -6,45 +6,49 @@
# #
#======================================================================= #=======================================================================
class PlexError(Exception): class PlexError(Exception):
message = "" message = ""
class PlexTypeError(PlexError, TypeError): class PlexTypeError(PlexError, TypeError):
pass pass
class PlexValueError(PlexError, ValueError): class PlexValueError(PlexError, ValueError):
pass pass
class InvalidRegex(PlexError): class InvalidRegex(PlexError):
pass pass
class InvalidToken(PlexError): class InvalidToken(PlexError):
def __init__(self, token_number, message):
PlexError.__init__(self, "Token number %d: %s" % (token_number, message))
def __init__(self, token_number, message):
PlexError.__init__(self, "Token number %d: %s" % (token_number, message))
class InvalidScanner(PlexError): class InvalidScanner(PlexError):
pass
class AmbiguousAction(PlexError):
message = "Two tokens with different actions can match the same string"
def __init__(self):
pass pass
class UnrecognizedInput(PlexError):
scanner = None
position = None
state_name = None
def __init__(self, scanner, state_name): class AmbiguousAction(PlexError):
self.scanner = scanner message = "Two tokens with different actions can match the same string"
self.position = scanner.get_position()
self.state_name = state_name
def __str__(self):
return ("'%s', line %d, char %d: Token not recognised in state %s"
% (self.position + (repr(self.state_name),)))
def __init__(self):
pass
class UnrecognizedInput(PlexError):
scanner = None
position = None
state_name = None
def __init__(self, scanner, state_name):
self.scanner = scanner
self.position = scanner.get_position()
self.state_name = state_name
def __str__(self):
return ("'%s', line %d, char %d: Token not recognised in state %r" % (
self.position + (self.state_name,)))
This diff is collapsed.
This diff is collapsed.
...@@ -42,14 +42,15 @@ def chars_to_ranges(s): ...@@ -42,14 +42,15 @@ def chars_to_ranges(s):
while i < n: while i < n:
code1 = ord(char_list[i]) code1 = ord(char_list[i])
code2 = code1 + 1 code2 = code1 + 1
i = i + 1 i += 1
while i < n and code2 >= ord(char_list[i]): while i < n and code2 >= ord(char_list[i]):
code2 = code2 + 1 code2 += 1
i = i + 1 i += 1
result.append(code1) result.append(code1)
result.append(code2) result.append(code2)
return result return result
def uppercase_range(code1, code2): def uppercase_range(code1, code2):
""" """
If the range of characters from code1 to code2-1 includes any If the range of characters from code1 to code2-1 includes any
...@@ -63,6 +64,7 @@ def uppercase_range(code1, code2): ...@@ -63,6 +64,7 @@ def uppercase_range(code1, code2):
else: else:
return None return None
def lowercase_range(code1, code2): def lowercase_range(code1, code2):
""" """
If the range of characters from code1 to code2-1 includes any If the range of characters from code1 to code2-1 includes any
...@@ -76,6 +78,7 @@ def lowercase_range(code1, code2): ...@@ -76,6 +78,7 @@ def lowercase_range(code1, code2):
else: else:
return None return None
def CodeRanges(code_list): def CodeRanges(code_list):
""" """
Given a list of codes as returned by chars_to_ranges, return Given a list of codes as returned by chars_to_ranges, return
...@@ -86,6 +89,7 @@ def CodeRanges(code_list): ...@@ -86,6 +89,7 @@ def CodeRanges(code_list):
re_list.append(CodeRange(code_list[i], code_list[i + 1])) re_list.append(CodeRange(code_list[i], code_list[i + 1]))
return Alt(*re_list) return Alt(*re_list)
def CodeRange(code1, code2): def CodeRange(code1, code2):
""" """
CodeRange(code1, code2) is an RE which matches any character CodeRange(code1, code2) is an RE which matches any character
...@@ -93,11 +97,12 @@ def CodeRange(code1, code2): ...@@ -93,11 +97,12 @@ def CodeRange(code1, code2):
""" """
if code1 <= nl_code < code2: if code1 <= nl_code < code2:
return Alt(RawCodeRange(code1, nl_code), return Alt(RawCodeRange(code1, nl_code),
RawNewline, RawNewline,
RawCodeRange(nl_code + 1, code2)) RawCodeRange(nl_code + 1, code2))
else: else:
return RawCodeRange(code1, code2) return RawCodeRange(code1, code2)
# #
# Abstract classes # Abstract classes
# #
...@@ -110,12 +115,12 @@ class RE(object): ...@@ -110,12 +115,12 @@ class RE(object):
re1 | re2 is an RE which matches either |re1| or |re2| re1 | re2 is an RE which matches either |re1| or |re2|
""" """
nullable = 1 # True if this RE can match 0 input symbols nullable = 1 # True if this RE can match 0 input symbols
match_nl = 1 # True if this RE can match a string ending with '\n' match_nl = 1 # True if this RE can match a string ending with '\n'
str = None # Set to a string to override the class's __str__ result str = None # Set to a string to override the class's __str__ result
def build_machine(self, machine, initial_state, final_state, def build_machine(self, machine, initial_state, final_state,
match_bol, nocase): match_bol, nocase):
""" """
This method should add states to |machine| to implement this This method should add states to |machine| to implement this
RE, starting at |initial_state| and ending at |final_state|. RE, starting at |initial_state| and ending at |final_state|.
...@@ -124,7 +129,7 @@ class RE(object): ...@@ -124,7 +129,7 @@ class RE(object):
letters should be treated as equivalent. letters should be treated as equivalent.
""" """
raise NotImplementedError("%s.build_machine not implemented" % raise NotImplementedError("%s.build_machine not implemented" %
self.__class__.__name__) self.__class__.__name__)
def build_opt(self, m, initial_state, c): def build_opt(self, m, initial_state, c):
""" """
...@@ -160,18 +165,18 @@ class RE(object): ...@@ -160,18 +165,18 @@ class RE(object):
self.check_string(num, value) self.check_string(num, value)
if len(value) != 1: if len(value) != 1:
raise Errors.PlexValueError("Invalid value for argument %d of Plex.%s." raise Errors.PlexValueError("Invalid value for argument %d of Plex.%s."
"Expected a string of length 1, got: %s" % ( "Expected a string of length 1, got: %s" % (
num, self.__class__.__name__, repr(value))) num, self.__class__.__name__, repr(value)))
def wrong_type(self, num, value, expected): def wrong_type(self, num, value, expected):
if type(value) == types.InstanceType: if type(value) == types.InstanceType:
got = "%s.%s instance" % ( got = "%s.%s instance" % (
value.__class__.__module__, value.__class__.__name__) value.__class__.__module__, value.__class__.__name__)
else: else:
got = type(value).__name__ got = type(value).__name__
raise Errors.PlexTypeError("Invalid type for argument %d of Plex.%s " raise Errors.PlexTypeError("Invalid type for argument %d of Plex.%s "
"(expected %s, got %s" % ( "(expected %s, got %s" % (
num, self.__class__.__name__, expected, got)) num, self.__class__.__name__, expected, got))
# #
# Primitive RE constructors # Primitive RE constructors
...@@ -211,6 +216,7 @@ class RE(object): ...@@ -211,6 +216,7 @@ class RE(object):
## def calc_str(self): ## def calc_str(self):
## return "Char(%s)" % repr(self.char) ## return "Char(%s)" % repr(self.char)
def Char(c): def Char(c):
""" """
Char(c) is an RE which matches the character |c|. Char(c) is an RE which matches the character |c|.
...@@ -222,6 +228,7 @@ def Char(c): ...@@ -222,6 +228,7 @@ def Char(c):
result.str = "Char(%s)" % repr(c) result.str = "Char(%s)" % repr(c)
return result return result
class RawCodeRange(RE): class RawCodeRange(RE):
""" """
RawCodeRange(code1, code2) is a low-level RE which matches any character RawCodeRange(code1, code2) is a low-level RE which matches any character
...@@ -230,9 +237,9 @@ class RawCodeRange(RE): ...@@ -230,9 +237,9 @@ class RawCodeRange(RE):
""" """
nullable = 0 nullable = 0
match_nl = 0 match_nl = 0
range = None # (code, code) range = None # (code, code)
uppercase_range = None # (code, code) or None uppercase_range = None # (code, code) or None
lowercase_range = None # (code, code) or None lowercase_range = None # (code, code) or None
def __init__(self, code1, code2): def __init__(self, code1, code2):
self.range = (code1, code2) self.range = (code1, code2)
...@@ -252,6 +259,7 @@ class RawCodeRange(RE): ...@@ -252,6 +259,7 @@ class RawCodeRange(RE):
def calc_str(self): def calc_str(self):
return "CodeRange(%d,%d)" % (self.code1, self.code2) return "CodeRange(%d,%d)" % (self.code1, self.code2)
class _RawNewline(RE): class _RawNewline(RE):
""" """
RawNewline is a low-level RE which matches a newline character. RawNewline is a low-level RE which matches a newline character.
...@@ -266,6 +274,7 @@ class _RawNewline(RE): ...@@ -266,6 +274,7 @@ class _RawNewline(RE):
s = self.build_opt(m, initial_state, EOL) s = self.build_opt(m, initial_state, EOL)
s.add_transition((nl_code, nl_code + 1), final_state) s.add_transition((nl_code, nl_code + 1), final_state)
RawNewline = _RawNewline() RawNewline = _RawNewline()
...@@ -304,7 +313,7 @@ class Seq(RE): ...@@ -304,7 +313,7 @@ class Seq(RE):
i = len(re_list) i = len(re_list)
match_nl = 0 match_nl = 0
while i: while i:
i = i - 1 i -= 1
re = re_list[i] re = re_list[i]
if re.match_nl: if re.match_nl:
match_nl = 1 match_nl = 1
...@@ -354,7 +363,7 @@ class Alt(RE): ...@@ -354,7 +363,7 @@ class Alt(RE):
non_nullable_res.append(re) non_nullable_res.append(re)
if re.match_nl: if re.match_nl:
match_nl = 1 match_nl = 1
i = i + 1 i += 1
self.nullable_res = nullable_res self.nullable_res = nullable_res
self.non_nullable_res = non_nullable_res self.non_nullable_res = non_nullable_res
self.nullable = nullable self.nullable = nullable
...@@ -411,7 +420,7 @@ class SwitchCase(RE): ...@@ -411,7 +420,7 @@ class SwitchCase(RE):
def build_machine(self, m, initial_state, final_state, match_bol, nocase): def build_machine(self, m, initial_state, final_state, match_bol, nocase):
self.re.build_machine(m, initial_state, final_state, match_bol, self.re.build_machine(m, initial_state, final_state, match_bol,
self.nocase) self.nocase)
def calc_str(self): def calc_str(self):
if self.nocase: if self.nocase:
...@@ -434,6 +443,7 @@ Empty.__doc__ = \ ...@@ -434,6 +443,7 @@ Empty.__doc__ = \
""" """
Empty.str = "Empty" Empty.str = "Empty"
def Str1(s): def Str1(s):
""" """
Str1(s) is an RE which matches the literal string |s|. Str1(s) is an RE which matches the literal string |s|.
...@@ -442,6 +452,7 @@ def Str1(s): ...@@ -442,6 +452,7 @@ def Str1(s):
result.str = "Str(%s)" % repr(s) result.str = "Str(%s)" % repr(s)
return result return result
def Str(*strs): def Str(*strs):
""" """
Str(s) is an RE which matches the literal string |s|. Str(s) is an RE which matches the literal string |s|.
...@@ -454,6 +465,7 @@ def Str(*strs): ...@@ -454,6 +465,7 @@ def Str(*strs):
result.str = "Str(%s)" % ','.join(map(repr, strs)) result.str = "Str(%s)" % ','.join(map(repr, strs))
return result return result
def Any(s): def Any(s):
""" """
Any(s) is an RE which matches any character in the string |s|. Any(s) is an RE which matches any character in the string |s|.
...@@ -463,6 +475,7 @@ def Any(s): ...@@ -463,6 +475,7 @@ def Any(s):
result.str = "Any(%s)" % repr(s) result.str = "Any(%s)" % repr(s)
return result return result
def AnyBut(s): def AnyBut(s):
""" """
AnyBut(s) is an RE which matches any character (including AnyBut(s) is an RE which matches any character (including
...@@ -475,6 +488,7 @@ def AnyBut(s): ...@@ -475,6 +488,7 @@ def AnyBut(s):
result.str = "AnyBut(%s)" % repr(s) result.str = "AnyBut(%s)" % repr(s)
return result return result
AnyChar = AnyBut("") AnyChar = AnyBut("")
AnyChar.__doc__ = \ AnyChar.__doc__ = \
""" """
...@@ -482,7 +496,8 @@ AnyChar.__doc__ = \ ...@@ -482,7 +496,8 @@ AnyChar.__doc__ = \
""" """
AnyChar.str = "AnyChar" AnyChar.str = "AnyChar"
def Range(s1, s2 = None):
def Range(s1, s2=None):
""" """
Range(c1, c2) is an RE which matches any single character in the range Range(c1, c2) is an RE which matches any single character in the range
|c1| to |c2| inclusive. |c1| to |c2| inclusive.
...@@ -495,11 +510,12 @@ def Range(s1, s2 = None): ...@@ -495,11 +510,12 @@ def Range(s1, s2 = None):
else: else:
ranges = [] ranges = []
for i in range(0, len(s1), 2): for i in range(0, len(s1), 2):
ranges.append(CodeRange(ord(s1[i]), ord(s1[i+1]) + 1)) ranges.append(CodeRange(ord(s1[i]), ord(s1[i + 1]) + 1))
result = Alt(*ranges) result = Alt(*ranges)
result.str = "Range(%s)" % repr(s1) result.str = "Range(%s)" % repr(s1)
return result return result
def Opt(re): def Opt(re):
""" """
Opt(re) is an RE which matches either |re| or the empty string. Opt(re) is an RE which matches either |re| or the empty string.
...@@ -508,6 +524,7 @@ def Opt(re): ...@@ -508,6 +524,7 @@ def Opt(re):
result.str = "Opt(%s)" % re result.str = "Opt(%s)" % re
return result return result
def Rep(re): def Rep(re):
""" """
Rep(re) is an RE which matches zero or more repetitions of |re|. Rep(re) is an RE which matches zero or more repetitions of |re|.
...@@ -516,12 +533,14 @@ def Rep(re): ...@@ -516,12 +533,14 @@ def Rep(re):
result.str = "Rep(%s)" % re result.str = "Rep(%s)" % re
return result return result
def NoCase(re): def NoCase(re):
""" """
NoCase(re) is an RE which matches the same strings as RE, but treating NoCase(re) is an RE which matches the same strings as RE, but treating
upper and lower case letters as equivalent. upper and lower case letters as equivalent.
""" """
return SwitchCase(re, nocase = 1) return SwitchCase(re, nocase=1)
def Case(re): def Case(re):
""" """
...@@ -529,7 +548,7 @@ def Case(re): ...@@ -529,7 +548,7 @@ def Case(re):
upper and lower case letters as distinct, i.e. it cancels the effect upper and lower case letters as distinct, i.e. it cancels the effect
of any enclosing NoCase(). of any enclosing NoCase().
""" """
return SwitchCase(re, nocase = 0) return SwitchCase(re, nocase=0)
# #
# RE Constants # RE Constants
......
...@@ -31,7 +31,7 @@ cdef class Scanner: ...@@ -31,7 +31,7 @@ cdef class Scanner:
@cython.locals(input_state=long) @cython.locals(input_state=long)
cdef next_char(self) cdef next_char(self)
@cython.locals(action=Action) @cython.locals(action=Action)
cdef tuple read(self) cpdef tuple read(self)
cdef tuple scan_a_token(self) cdef tuple scan_a_token(self)
cdef tuple position(self) cdef tuple position(self)
......
This diff is collapsed.
...@@ -13,147 +13,146 @@ from .Errors import PlexError ...@@ -13,147 +13,146 @@ from .Errors import PlexError
class RegexpSyntaxError(PlexError): class RegexpSyntaxError(PlexError):
pass pass
def re(s): def re(s):
""" """
Convert traditional string representation of regular expression |s| Convert traditional string representation of regular expression |s|
into Plex representation. into Plex representation.
""" """
return REParser(s).parse_re() return REParser(s).parse_re()
class REParser(object): class REParser(object):
def __init__(self, s):
def __init__(self, s): self.s = s
self.s = s self.i = -1
self.i = -1 self.end = 0
self.end = 0
self.next()
def parse_re(self):
re = self.parse_alt()
if not self.end:
self.error("Unexpected %s" % repr(self.c))
return re
def parse_alt(self):
"""Parse a set of alternative regexps."""
re = self.parse_seq()
if self.c == '|':
re_list = [re]
while self.c == '|':
self.next() self.next()
re_list.append(self.parse_seq())
re = Alt(*re_list) def parse_re(self):
return re re = self.parse_alt()
if not self.end:
def parse_seq(self): self.error("Unexpected %s" % repr(self.c))
"""Parse a sequence of regexps.""" return re
re_list = []
while not self.end and not self.c in "|)": def parse_alt(self):
re_list.append(self.parse_mod()) """Parse a set of alternative regexps."""
return Seq(*re_list) re = self.parse_seq()
if self.c == '|':
def parse_mod(self): re_list = [re]
"""Parse a primitive regexp followed by *, +, ? modifiers.""" while self.c == '|':
re = self.parse_prim() self.next()
while not self.end and self.c in "*+?": re_list.append(self.parse_seq())
if self.c == '*': re = Alt(*re_list)
re = Rep(re) return re
elif self.c == '+':
re = Rep1(re) def parse_seq(self):
else: # self.c == '?' """Parse a sequence of regexps."""
re = Opt(re) re_list = []
self.next() while not self.end and not self.c in "|)":
return re re_list.append(self.parse_mod())
return Seq(*re_list)
def parse_prim(self):
"""Parse a primitive regexp.""" def parse_mod(self):
c = self.get() """Parse a primitive regexp followed by *, +, ? modifiers."""
if c == '.': re = self.parse_prim()
re = AnyBut("\n") while not self.end and self.c in "*+?":
elif c == '^': if self.c == '*':
re = Bol re = Rep(re)
elif c == '$': elif self.c == '+':
re = Eol re = Rep1(re)
elif c == '(': else: # self.c == '?'
re = self.parse_alt() re = Opt(re)
self.expect(')') self.next()
elif c == '[': return re
re = self.parse_charset()
self.expect(']') def parse_prim(self):
else: """Parse a primitive regexp."""
if c == '\\':
c = self.get() c = self.get()
re = Char(c) if c == '.':
return re re = AnyBut("\n")
elif c == '^':
def parse_charset(self): re = Bol
"""Parse a charset. Does not include the surrounding [].""" elif c == '$':
char_list = [] re = Eol
invert = 0 elif c == '(':
if self.c == '^': re = self.parse_alt()
invert = 1 self.expect(')')
self.next() elif c == '[':
if self.c == ']': re = self.parse_charset()
char_list.append(']') self.expect(']')
self.next() else:
while not self.end and self.c != ']': if c == '\\':
c1 = self.get() c = self.get()
if self.c == '-' and self.lookahead(1) != ']': re = Char(c)
return re
def parse_charset(self):
"""Parse a charset. Does not include the surrounding []."""
char_list = []
invert = 0
if self.c == '^':
invert = 1
self.next()
if self.c == ']':
char_list.append(']')
self.next()
while not self.end and self.c != ']':
c1 = self.get()
if self.c == '-' and self.lookahead(1) != ']':
self.next()
c2 = self.get()
for a in xrange(ord(c1), ord(c2) + 1):
char_list.append(chr(a))
else:
char_list.append(c1)
chars = ''.join(char_list)
if invert:
return AnyBut(chars)
else:
return Any(chars)
def next(self):
"""Advance to the next char."""
s = self.s
i = self.i = self.i + 1
if i < len(s):
self.c = s[i]
else:
self.c = ''
self.end = 1
def get(self):
if self.end:
self.error("Premature end of string")
c = self.c
self.next() self.next()
c2 = self.get() return c
for a in xrange(ord(c1), ord(c2) + 1):
char_list.append(chr(a)) def lookahead(self, n):
else: """Look ahead n chars."""
char_list.append(c1) j = self.i + n
chars = ''.join(char_list) if j < len(self.s):
if invert: return self.s[j]
return AnyBut(chars) else:
else: return ''
return Any(chars)
def expect(self, c):
def next(self): """
"""Advance to the next char.""" Expect to find character |c| at current position.
s = self.s Raises an exception otherwise.
i = self.i = self.i + 1 """
if i < len(s): if self.c == c:
self.c = s[i] self.next()
else: else:
self.c = '' self.error("Missing %s" % repr(c))
self.end = 1
def error(self, mess):
def get(self): """Raise exception to signal syntax error in regexp."""
if self.end: raise RegexpSyntaxError("Syntax error in regexp %s at position %d: %s" % (
self.error("Premature end of string") repr(self.s), self.i, mess))
c = self.c
self.next()
return c
def lookahead(self, n):
"""Look ahead n chars."""
j = self.i + n
if j < len(self.s):
return self.s[j]
else:
return ''
def expect(self, c):
"""
Expect to find character |c| at current position.
Raises an exception otherwise.
"""
if self.c == c:
self.next()
else:
self.error("Missing %s" % repr(c))
def error(self, mess):
"""Raise exception to signal syntax error in regexp."""
raise RegexpSyntaxError("Syntax error in regexp %s at position %d: %s" % (
repr(self.s), self.i, mess))
This diff is collapsed.
# cython.* namespace for pure mode. # cython.* namespace for pure mode.
__version__ = "0.21" __version__ = "0.21.1pre"
# BEGIN shameless copy from Cython/minivect/minitypes.py # BEGIN shameless copy from Cython/minivect/minitypes.py
......
#################### cfunc.to_py ####################
@cname("{{cname}}")
cdef object {{cname}}({{return_type.ctype}} (*f)({{ ', '.join(arg.type_cname for arg in args) }}) {{except_clause}}):
def wrap({{ ', '.join('{arg.ctype} {arg.name}'.format(arg=arg) for arg in args) }}):
"""wrap({{', '.join(('{arg.name}: {arg.type_displayname}'.format(arg=arg) if arg.type_displayname else arg.name) for arg in args)}}){{if return_type.type_displayname}} -> {{return_type.type_displayname}}{{endif}}"""
{{'' if return_type.type.is_void else 'return '}}f({{ ', '.join(arg.name for arg in args) }})
return wrap
...@@ -545,13 +545,12 @@ static PyObject *__Pyx_CyFunction_descr_get(PyObject *func, PyObject *obj, PyObj ...@@ -545,13 +545,12 @@ static PyObject *__Pyx_CyFunction_descr_get(PyObject *func, PyObject *obj, PyObj
if (m->flags & __Pyx_CYFUNCTION_CLASSMETHOD) { if (m->flags & __Pyx_CYFUNCTION_CLASSMETHOD) {
if (type == NULL) if (type == NULL)
type = (PyObject *)(Py_TYPE(obj)); type = (PyObject *)(Py_TYPE(obj));
return PyMethod_New(func, return __Pyx_PyMethod_New(func, type, (PyObject *)(Py_TYPE(type)));
type, (PyObject *)(Py_TYPE(type)));
} }
if (obj == Py_None) if (obj == Py_None)
obj = NULL; obj = NULL;
return PyMethod_New(func, obj, type); return __Pyx_PyMethod_New(func, obj, type);
} }
static PyObject* static PyObject*
......
...@@ -213,6 +213,13 @@ static void __Pyx_Raise(PyObject *type, PyObject *value, PyObject *tb, PyObject ...@@ -213,6 +213,13 @@ static void __Pyx_Raise(PyObject *type, PyObject *value, PyObject *tb, PyObject
PyErr_SetObject(type, value); PyErr_SetObject(type, value);
if (tb) { if (tb) {
#if CYTHON_COMPILING_IN_PYPY
PyObject *tmp_type, *tmp_value, *tmp_tb;
PyErr_Fetch(tmp_type, tmp_value, tmp_tb);
Py_INCREF(tb);
PyErr_Restore(tmp_type, tmp_value, tb);
Py_XDECREF(tmp_tb);
#else
PyThreadState *tstate = PyThreadState_GET(); PyThreadState *tstate = PyThreadState_GET();
PyObject* tmp_tb = tstate->curexc_traceback; PyObject* tmp_tb = tstate->curexc_traceback;
if (tb != tmp_tb) { if (tb != tmp_tb) {
...@@ -220,6 +227,7 @@ static void __Pyx_Raise(PyObject *type, PyObject *value, PyObject *tb, PyObject ...@@ -220,6 +227,7 @@ static void __Pyx_Raise(PyObject *type, PyObject *value, PyObject *tb, PyObject
tstate->curexc_traceback = tb; tstate->curexc_traceback = tb;
Py_XDECREF(tmp_tb); Py_XDECREF(tmp_tb);
} }
#endif
} }
bad: bad:
......
...@@ -62,9 +62,6 @@ ...@@ -62,9 +62,6 @@
#if PY_MAJOR_VERSION >= 3 #if PY_MAJOR_VERSION >= 3
#define Py_TPFLAGS_CHECKTYPES 0 #define Py_TPFLAGS_CHECKTYPES 0
#define Py_TPFLAGS_HAVE_INDEX 0 #define Py_TPFLAGS_HAVE_INDEX 0
#endif
#if PY_MAJOR_VERSION >= 3
#define Py_TPFLAGS_HAVE_NEWBUFFER 0 #define Py_TPFLAGS_HAVE_NEWBUFFER 0
#endif #endif
...@@ -158,6 +155,12 @@ ...@@ -158,6 +155,12 @@
#define PyBoolObject PyLongObject #define PyBoolObject PyLongObject
#endif #endif
#if PY_MAJOR_VERSION >= 3 && CYTHON_COMPILING_IN_PYPY
#ifndef PyUnicode_InternFromString
#define PyUnicode_InternFromString(s) PyUnicode_FromString(s)
#endif
#endif
#if PY_VERSION_HEX < 0x030200A4 #if PY_VERSION_HEX < 0x030200A4
typedef long Py_hash_t; typedef long Py_hash_t;
#define __Pyx_PyInt_FromHash_t PyInt_FromLong #define __Pyx_PyInt_FromHash_t PyInt_FromLong
...@@ -168,7 +171,9 @@ ...@@ -168,7 +171,9 @@
#endif #endif
#if PY_MAJOR_VERSION >= 3 #if PY_MAJOR_VERSION >= 3
#define PyMethod_New(func, self, klass) ((self) ? PyMethod_New(func, self) : PyInstanceMethod_New(func)) #define __Pyx_PyMethod_New(func, self, klass) ((self) ? PyMethod_New(func, self) : PyInstanceMethod_New(func))
#else
#define __Pyx_PyMethod_New(func, self, klass) PyMethod_New(func, self, klass)
#endif #endif
/* inline attribute */ /* inline attribute */
......
import os import os
import sys
from distutils.core import setup from distutils.core import setup
from distutils.extension import Extension from distutils.extension import Extension
from Cython.Distutils import build_ext from Cython.Build import cythonize
# For demo purposes, we build our own tiny library. # For demo purposes, we build our own tiny library.
...@@ -12,20 +13,19 @@ try: ...@@ -12,20 +13,19 @@ try:
assert os.system("ar rcs libmymath.a mymath.o") == 0 assert os.system("ar rcs libmymath.a mymath.o") == 0
except: except:
if not os.path.exists("libmymath.a"): if not os.path.exists("libmymath.a"):
print "Error building external library, please create libmymath.a manually." print("Error building external library, please create libmymath.a manually.")
sys.exit(1) sys.exit(1)
# Here is how to use the library built above. # Here is how to use the library built above.
ext_modules=[ ext_modules = cythonize([
Extension("call_mymath", Extension("call_mymath",
sources = ["call_mymath.pyx"], sources=["call_mymath.pyx"],
include_dirs = [os.getcwd()], # path to .h file(s) include_dirs=[os.getcwd()], # path to .h file(s)
library_dirs = [os.getcwd()], # path to .a or .so file(s) library_dirs=[os.getcwd()], # path to .a or .so file(s)
libraries = ['mymath']) libraries=['mymath'])
] ])
setup( setup(
name = 'Demos', name='Demos',
cmdclass = {'build_ext': build_ext}, ext_modules=ext_modules,
ext_modules = ext_modules,
) )
...@@ -5,8 +5,7 @@ include pylintrc ...@@ -5,8 +5,7 @@ include pylintrc
include setup.py include setup.py
include setupegg.py include setupegg.py
include bin/* include bin/*
include cython.py include cython.py cythonize.py cygdb.py
include cygdb.py
recursive-include Cython *.pyx *.pxd recursive-include Cython *.pyx *.pxd
include Doc/* include Doc/*
......
def primes(kmax): def primes(kmax):
result = [] result = []
if kmax > 1000: if kmax > 1000:
kmax = 1000 kmax = 1000
p = [0] * 1000
k = 0
n = 2
while k < kmax: while k < kmax:
i = 0 i = 0
while i < k and n % p[i] != 0: while i < k and n % p[i] != 0:
i = i + 1 i += 1
if i == k: if i == k:
p[k] = n p[k] = n
k = k + 1 k += 1
result.append(n) result.append(n)
n = n + 1 n += 1
return result return result
...@@ -78,6 +78,8 @@ You can show Cython's code analysis by passing the ``--annotate`` option:: ...@@ -78,6 +78,8 @@ You can show Cython's code analysis by passing the ``--annotate`` option::
%%cython --annotate %%cython --annotate
... ...
.. figure:: ipython.png
Using the Sage notebook Using the Sage notebook
----------------------- -----------------------
......
...@@ -137,10 +137,14 @@ together into :file:`rect.so`, which you can then import in Python using ...@@ -137,10 +137,14 @@ together into :file:`rect.so`, which you can then import in Python using
``import rect`` (if you forget to link the :file:`Rectangle.o`, you will ``import rect`` (if you forget to link the :file:`Rectangle.o`, you will
get missing symbols while importing the library in Python). get missing symbols while importing the library in Python).
Note that the ``language`` option has no effect on user provided Extension
objects that are passed into ``cythonize()``. It is only used for modules
found by file name (as in the example above).
The options can also be passed directly from the source file, which is The options can also be passed directly from the source file, which is
often preferable. Starting with version 0.17, Cython also allows to often preferable (and overrides any global option). Starting with
pass external source files into the ``cythonize()`` command this way. version 0.17, Cython also allows to pass external source files into the
Here is a simplified setup.py file:: ``cythonize()`` command this way. Here is a simplified setup.py file::
from distutils.core import setup from distutils.core import setup
from Cython.Build import cythonize from Cython.Build import cythonize
......
...@@ -1951,6 +1951,8 @@ def runtests(options, cmd_args, coverage=None): ...@@ -1951,6 +1951,8 @@ def runtests(options, cmd_args, coverage=None):
try: try:
import jedi import jedi
if list(map(int, re.findall('[0-9]+', jedi.__version__))) < [0, 8, 1]:
raise ImportError
except ImportError: except ImportError:
exclude_selectors.append(RegExSelector('Jedi')) exclude_selectors.append(RegExSelector('Jedi'))
......
...@@ -190,13 +190,13 @@ def acquire_nonbuffer1(first, second=None): ...@@ -190,13 +190,13 @@ def acquire_nonbuffer1(first, second=None):
""" """
>>> acquire_nonbuffer1(3) # doctest: +ELLIPSIS >>> acquire_nonbuffer1(3) # doctest: +ELLIPSIS
Traceback (most recent call last): Traceback (most recent call last):
TypeError: 'int' does not ... the buffer interface TypeError:... 'int'...
>>> acquire_nonbuffer1(type) # doctest: +ELLIPSIS >>> acquire_nonbuffer1(type) # doctest: +ELLIPSIS
Traceback (most recent call last): Traceback (most recent call last):
TypeError: 'type' does not ... the buffer interface TypeError:... 'type'...
>>> acquire_nonbuffer1(None, 2) # doctest: +ELLIPSIS >>> acquire_nonbuffer1(None, 2) # doctest: +ELLIPSIS
Traceback (most recent call last): Traceback (most recent call last):
TypeError: 'int' does not ... the buffer interface TypeError:... 'int'...
""" """
cdef object[int] buf cdef object[int] buf
buf = first buf = first
......
...@@ -10,13 +10,11 @@ from Cython.Build.Dependencies import cythonize ...@@ -10,13 +10,11 @@ from Cython.Build.Dependencies import cythonize
from distutils.core import setup from distutils.core import setup
setup( setup(
ext_modules = cythonize("*.pyx"), ext_modules = cythonize("*.pyx", language='c++'),
) )
######## a.pyx ######## ######## a.pyx ########
# distutils: language = c++
from libcpp.vector cimport vector from libcpp.vector cimport vector
def use_vector(L): def use_vector(L):
......
cdef int wrong_args(int x, long y)
cdef long wrong_return_type(int x, int y)
cdef int wrong_exception_check(int x, int y) except 0
cdef int wrong_exception_value(int x, int y) except 0
cdef int wrong_exception_value_check(int x, int y) except 0
cdef int inherit_exception_value(int x, int y) except 0
cdef int inherit_exception_check(int x, int y) except *
# mode: error
# tag: pxd
cdef int wrong_args(int x, int y):
return 2
cdef int wrong_return_type(int x, int y):
return 2
cdef int wrong_exception_check(int x, int y) except? 0:
return 2
cdef int wrong_exception_value(int x, int y) except 1:
return 2
cdef int wrong_exception_value_check(int x, int y) except? 1:
return 2
cdef int inherit_exception_value(int x, int y):
return 2
cdef int inherit_exception_check(int x, int y):
return 2
_ERRORS = """
4:5: Function signature does not match previous declaration
7:5: Function signature does not match previous declaration
10:5: Function signature does not match previous declaration
13:5: Function signature does not match previous declaration
16:5: Function signature does not match previous declaration
19:5: Function signature does not match previous declaration
22:5: Function signature does not match previous declaration
"""
...@@ -18,7 +18,7 @@ def unused_result(): ...@@ -18,7 +18,7 @@ def unused_result():
return r return r
def unused_nested(): def unused_nested():
def unused_one(): def _unused_one():
pass pass
def unused_class(): def unused_class():
...@@ -53,7 +53,7 @@ _ERRORS = """ ...@@ -53,7 +53,7 @@ _ERRORS = """
9:9: Unused entry 'b' 9:9: Unused entry 'b'
12:15: Unused argument 'arg' 12:15: Unused argument 'arg'
16:6: Unused result in 'r' 16:6: Unused result in 'r'
21:4: Unused entry 'unused_one' 21:4: Unused entry '_unused_one'
25:4: Unused entry 'Unused' 25:4: Unused entry 'Unused'
35:16: Unused entry 'foo' 35:16: Unused entry 'foo'
36:13: Unused entry 'i' 36:13: Unused entry 'i'
......
...@@ -14,7 +14,6 @@ from cython.parallel cimport prange, parallel ...@@ -14,7 +14,6 @@ from cython.parallel cimport prange, parallel
import gc import gc
import sys import sys
import re
if sys.version_info[0] < 3: if sys.version_info[0] < 3:
import __builtin__ as builtins import __builtin__ as builtins
...@@ -26,9 +25,6 @@ __test__ = {} ...@@ -26,9 +25,6 @@ __test__ = {}
def testcase(func): def testcase(func):
doctest = func.__doc__ doctest = func.__doc__
if sys.version_info >= (3,1,1):
doctest = doctest.replace('does not have the buffer interface',
'does not support the buffer interface')
if sys.version_info >= (3, 0): if sys.version_info >= (3, 0):
_u = str _u = str
else: else:
...@@ -162,22 +158,22 @@ def acquire_failure3(): ...@@ -162,22 +158,22 @@ def acquire_failure3():
@testcase @testcase
def acquire_nonbuffer1(first, second=None): def acquire_nonbuffer1(first, second=None):
""" """
>>> acquire_nonbuffer1(3) >>> acquire_nonbuffer1(3) # doctest: +ELLIPSIS
Traceback (most recent call last): Traceback (most recent call last):
... ...
TypeError: 'int' does not have the buffer interface TypeError:... 'int'...
>>> acquire_nonbuffer1(type) >>> acquire_nonbuffer1(type) # doctest: +ELLIPSIS
Traceback (most recent call last): Traceback (most recent call last):
... ...
TypeError: 'type' does not have the buffer interface TypeError:... 'type'...
>>> acquire_nonbuffer1(None, 2) >>> acquire_nonbuffer1(None, 2) # doctest: +ELLIPSIS
Traceback (most recent call last): Traceback (most recent call last):
... ...
TypeError: 'int' does not have the buffer interface TypeError:... 'int'...
>>> acquire_nonbuffer1(4, object()) >>> acquire_nonbuffer1(4, object()) # doctest: +ELLIPSIS
Traceback (most recent call last): Traceback (most recent call last):
... ...
TypeError: 'int' does not have the buffer interface TypeError:... 'int'...
""" """
cdef int[:] buf cdef int[:] buf
buf = first buf = first
......
# mode: run
# cython: always_allow_keywords=True
cimport cython
from libc.math cimport sqrt
cdef void empty_cfunc():
print "here"
# same signature
cdef void another_empty_cfunc():
print "there"
def call_empty_cfunc():
"""
>>> call_empty_cfunc()
here
there
"""
cdef object py_func = empty_cfunc
py_func()
cdef object another_py_func = another_empty_cfunc
another_py_func()
cdef double square_c(double x):
return x * x
def call_square_c(x):
"""
>>> call_square_c(2)
4.0
>>> call_square_c(-7)
49.0
"""
cdef object py_func = square_c
return py_func(x)
def return_square_c():
"""
>>> square_c = return_square_c()
>>> square_c(5)
25.0
>>> square_c(x=4)
16.0
>>> square_c.__doc__ # FIXME: try to make original C function name available
'wrap(x: float) -> float'
"""
return square_c
def return_libc_sqrt():
"""
>>> sqrt = return_libc_sqrt()
>>> sqrt(9)
3.0
>>> sqrt(x=9)
3.0
>>> sqrt.__doc__
'wrap(x: float) -> float'
"""
return sqrt
global_csqrt = sqrt
def test_global():
"""
>>> global_csqrt(9)
3.0
>>> global_csqrt.__doc__
'wrap(x: float) -> float'
>>> test_global()
double (double) nogil
Python object
"""
print cython.typeof(sqrt)
print cython.typeof(global_csqrt)
cdef long long rad(long long x):
cdef long long rad = 1
for p in range(2, <long long>sqrt(x) + 1):
if x % p == 0:
rad *= p
while x % p == 0:
x //= p
if x == 1:
break
return rad
cdef bint abc(long long a, long long b, long long c) except -1:
if a + b != c:
raise ValueError("Not a valid abc candidate: (%s, %s, %s)" % (a, b, c))
return rad(a*b*c) < c
def call_abc(a, b, c):
"""
>>> call_abc(2, 3, 5)
False
>>> call_abc(1, 63, 64)
True
>>> call_abc(2, 3**10 * 109, 23**5)
True
>>> call_abc(a=2, b=3**10 * 109, c=23**5)
True
>>> call_abc(1, 1, 1)
Traceback (most recent call last):
...
ValueError: Not a valid abc candidate: (1, 1, 1)
"""
cdef object py_func = abc
return py_func(a, b, c)
def return_abc():
"""
>>> abc = return_abc()
>>> abc(2, 3, 5)
False
>>> abc.__doc__
"wrap(a: 'long long', b: 'long long', c: 'long long') -> bool"
"""
return abc
ctypedef double foo
cdef foo test_typedef_cfunc(foo x):
return x
def test_typedef(x):
"""
>>> test_typedef(100)
100.0
"""
return (<object>test_typedef_cfunc)(x)
cdef union my_union:
int a
double b
cdef struct my_struct:
int which
my_union y
cdef my_struct c_struct_builder(int which, int a, double b):
cdef my_struct value
value.which = which
if which:
value.y.a = a
else:
value.y.b = b
return value
def return_struct_builder():
"""
>>> make = return_struct_builder()
>>> d = make(0, 1, 2)
>>> d['which']
0
>>> d['y']['b']
2.0
>>> d = make(1, 1, 2)
>>> d['which']
1
>>> d['y']['a']
1
>>> make.__doc__
"wrap(which: 'int', a: 'int', b: float) -> 'my_struct'"
"""
return c_struct_builder
cdef object test_object_params_cfunc(a, b):
return a, b
def test_object_params(a, b):
"""
>>> test_object_params(1, 'a')
(1, 'a')
"""
return (<object>test_object_params_cfunc)(a, b)
cdef tuple test_builtin_params_cfunc(list a, dict b):
return a, b
def test_builtin_params(a, b):
"""
>>> test_builtin_params([], {})
([], {})
>>> test_builtin_params(1, 2)
Traceback (most recent call last):
...
TypeError: Argument 'a' has incorrect type (expected list, got int)
"""
return (<object>test_builtin_params_cfunc)(a, b)
def return_builtin_params_cfunc():
"""
>>> cfunc = return_builtin_params_cfunc()
>>> cfunc([1, 2], {'a': 3})
([1, 2], {'a': 3})
>>> cfunc.__doc__
'wrap(a: list, b: dict) -> tuple'
"""
return test_builtin_params_cfunc
cdef class A:
def __repr__(self):
return self.__class__.__name__
cdef class B(A):
pass
cdef A test_cdef_class_params_cfunc(A a, B b):
return b
def test_cdef_class_params(a, b):
"""
>>> test_cdef_class_params(A(), B())
B
>>> test_cdef_class_params(B(), A())
Traceback (most recent call last):
...
TypeError: Argument 'b' has incorrect type (expected cfunc_convert.B, got cfunc_convert.A)
"""
return (<object>test_cdef_class_params_cfunc)(a, b)
# cython: c_string_type=str
# cython: c_string_encoding=ascii
cdef extern from "math.h":
cpdef double pxd_sqrt "sqrt"(double)
# cython: c_string_type=str
# cython: c_string_encoding=ascii
__doc__ = """
>>> sqrt(1)
1.0
>>> pyx_sqrt(4)
2.0
>>> pxd_sqrt(9)
3.0
>>> log(10)
Traceback (most recent call last):
...
NameError: name 'log' is not defined
>>> strchr('abcabc', ord('c'))
'cabc'
"""
cdef extern from "math.h":
cpdef double sqrt(double)
cpdef double pyx_sqrt "sqrt"(double)
cdef double log(double) # not wrapped
cdef extern from "string.h":
# signature must be exact in C++, disagrees with C
cpdef const char* strchr(const char *haystack, int needle);
# tag: posix
from libc.stdlib cimport getenv
from posix.stdlib cimport setenv, unsetenv
from libc.time cimport *
def test_time():
"""
>>> test_time()
"""
cdef time_t t1, t2
t1 = time(NULL)
assert t1 != 0
t1 = time(&t2)
assert t1 == t2
def test_mktime():
"""
>>> test_mktime() # doctest:+ELLIPSIS
(986138177, ...'Sun Apr 1 15:16:17 2001\\n')
"""
cdef tm t, gmt
cdef time_t tt
cdef char *ct
cdef char *tz
tz = getenv("TZ")
setenv("TZ", "UTC", 1)
tzset()
t.tm_sec = 17
t.tm_min = 16
t.tm_hour = 15
t.tm_year = 101
t.tm_mon = 3
t.tm_mday = 1
t.tm_isdst = 0
tt = mktime(&t)
assert tt != -1
ct = ctime(&tt)
assert ct != NULL
if tz:
setenv("TZ", tz, 1)
else:
unsetenv("TZ")
tzset()
return tt, ct
# tag: posix
from posix.sys_time cimport *
def test_itimer(sec, usec):
"""
>>> test_itimer(10, 2)
(10, 2)
"""
cdef itimerval t, gtime
t.it_interval.tv_sec = sec
t.it_interval.tv_usec = usec
t.it_value.tv_sec = sec
t.it_value.tv_usec = usec
ret = setitimer(ITIMER_REAL, &t, NULL)
assert ret == 0
ret = getitimer(ITIMER_REAL, &gtime)
assert ret == 0
t.it_interval.tv_sec = 0
t.it_interval.tv_usec = 0
t.it_value.tv_sec = 0
t.it_value.tv_usec = 0
ret = setitimer(ITIMER_REAL, &t, NULL)
return gtime.it_interval.tv_sec, gtime.it_interval.tv_usec
def test_gettimeofday():
"""
>>> test_gettimeofday()
"""
cdef timeval t
ret = gettimeofday(&t, NULL)
assert ret == 0
This diff is collapsed.
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment