Moving the CPython API to cpython. namespace
authorDag Sverre Seljebotn <dagss@student.matnat.uio.no>
Fri, 12 Mar 2010 11:44:36 +0000 (12:44 +0100)
committerDag Sverre Seljebotn <dagss@student.matnat.uio.no>
Fri, 12 Mar 2010 11:44:36 +0000 (12:44 +0100)
commit19fa9fbf402425f11d1e45bd9642c67d87b3df85
tree94e575b82dfa9f2e6b9cbed971216a54921e584d
parent13f574a3808f92c0f2724d0472d7e164b565b626
Moving the CPython API to cpython. namespace

--HG--
rename : Cython/Includes/python.pxd => Cython/Includes/cpython/__init__.pxd
rename : Cython/Includes/python_bool.pxd => Cython/Includes/cpython/bool.pxd
rename : Cython/Includes/python_buffer.pxd => Cython/Includes/cpython/buffer.pxd
rename : Cython/Includes/python_bytes.pxd => Cython/Includes/cpython/bytes.pxd
rename : Cython/Includes/python_cobject.pxd => Cython/Includes/cpython/cobject.pxd
rename : Cython/Includes/python_complex.pxd => Cython/Includes/cpython/complex.pxd
rename : Cython/Includes/python_dict.pxd => Cython/Includes/cpython/dict.pxd
rename : Cython/Includes/python_exc.pxd => Cython/Includes/cpython/exc.pxd
rename : Cython/Includes/python_float.pxd => Cython/Includes/cpython/float.pxd
rename : Cython/Includes/python_function.pxd => Cython/Includes/cpython/function.pxd
rename : Cython/Includes/python_getargs.pxd => Cython/Includes/cpython/getargs.pxd
rename : Cython/Includes/python_instance.pxd => Cython/Includes/cpython/instance.pxd
rename : Cython/Includes/python_int.pxd => Cython/Includes/cpython/int.pxd
rename : Cython/Includes/python_iterator.pxd => Cython/Includes/cpython/iterator.pxd
rename : Cython/Includes/python_list.pxd => Cython/Includes/cpython/list.pxd
rename : Cython/Includes/python_long.pxd => Cython/Includes/cpython/long.pxd
rename : Cython/Includes/python_mapping.pxd => Cython/Includes/cpython/mapping.pxd
rename : Cython/Includes/python_mem.pxd => Cython/Includes/cpython/mem.pxd
rename : Cython/Includes/python_method.pxd => Cython/Includes/cpython/method.pxd
rename : Cython/Includes/python_module.pxd => Cython/Includes/cpython/module.pxd
rename : Cython/Includes/python_number.pxd => Cython/Includes/cpython/number.pxd
rename : Cython/Includes/python_object.pxd => Cython/Includes/cpython/object.pxd
rename : Cython/Includes/python_oldbuffer.pxd => Cython/Includes/cpython/oldbuffer.pxd
rename : Cython/Includes/python_pycapsule.pxd => Cython/Includes/cpython/pycapsule.pxd
rename : Cython/Includes/python_ref.pxd => Cython/Includes/cpython/ref.pxd
rename : Cython/Includes/python_sequence.pxd => Cython/Includes/cpython/sequence.pxd
rename : Cython/Includes/python_set.pxd => Cython/Includes/cpython/set.pxd
rename : Cython/Includes/python_string.pxd => Cython/Includes/cpython/string.pxd
rename : Cython/Includes/python_tuple.pxd => Cython/Includes/cpython/tuple.pxd
rename : Cython/Includes/python_type.pxd => Cython/Includes/cpython/type.pxd
rename : Cython/Includes/python_unicode.pxd => Cython/Includes/cpython/unicode.pxd
rename : Cython/Includes/python_version.pxd => Cython/Includes/cpython/version.pxd
rename : Cython/Includes/python_weakref.pxd => Cython/Includes/cpython/weakref.pxd
rename : tests/run/libc_stdlib.pyx => tests/run/cython_includes.pyx
37 files changed:
Cython/Includes/cpython/__init__.pxd [new file with mode: 0644]
Cython/Includes/cpython/__init__.pyx [new file with mode: 0644]
Cython/Includes/cpython/bool.pxd [moved from Cython/Includes/python_bool.pxd with 100% similarity]
Cython/Includes/cpython/buffer.pxd [moved from Cython/Includes/python_buffer.pxd with 100% similarity]
Cython/Includes/cpython/bytes.pxd [moved from Cython/Includes/python_bytes.pxd with 99% similarity]
Cython/Includes/cpython/cobject.pxd [moved from Cython/Includes/python_cobject.pxd with 97% similarity]
Cython/Includes/cpython/complex.pxd [moved from Cython/Includes/python_complex.pxd with 100% similarity]
Cython/Includes/cpython/dict.pxd [moved from Cython/Includes/python_dict.pxd with 99% similarity]
Cython/Includes/cpython/exc.pxd [moved from Cython/Includes/python_exc.pxd with 99% similarity]
Cython/Includes/cpython/float.pxd [moved from Cython/Includes/python_float.pxd with 100% similarity]
Cython/Includes/cpython/function.pxd [moved from Cython/Includes/python_function.pxd with 98% similarity]
Cython/Includes/cpython/getargs.pxd [moved from Cython/Includes/python_getargs.pxd with 95% similarity]
Cython/Includes/cpython/instance.pxd [moved from Cython/Includes/python_instance.pxd with 100% similarity]
Cython/Includes/cpython/int.pxd [moved from Cython/Includes/python_int.pxd with 100% similarity]
Cython/Includes/cpython/iterator.pxd [moved from Cython/Includes/python_iterator.pxd with 100% similarity]
Cython/Includes/cpython/list.pxd [moved from Cython/Includes/python_list.pxd with 99% similarity]
Cython/Includes/cpython/long.pxd [moved from Cython/Includes/python_long.pxd with 99% similarity]
Cython/Includes/cpython/mapping.pxd [moved from Cython/Includes/python_mapping.pxd with 100% similarity]
Cython/Includes/cpython/mem.pxd [moved from Cython/Includes/python_mem.pxd with 100% similarity]
Cython/Includes/cpython/method.pxd [moved from Cython/Includes/python_method.pxd with 100% similarity]
Cython/Includes/cpython/module.pxd [moved from Cython/Includes/python_module.pxd with 99% similarity]
Cython/Includes/cpython/number.pxd [moved from Cython/Includes/python_number.pxd with 99% similarity]
Cython/Includes/cpython/object.pxd [moved from Cython/Includes/python_object.pxd with 99% similarity]
Cython/Includes/cpython/oldbuffer.pxd [moved from Cython/Includes/python_oldbuffer.pxd with 100% similarity]
Cython/Includes/cpython/pycapsule.pxd [moved from Cython/Includes/python_pycapsule.pxd with 99% similarity]
Cython/Includes/cpython/ref.pxd [moved from Cython/Includes/python_ref.pxd with 100% similarity]
Cython/Includes/cpython/sequence.pxd [moved from Cython/Includes/python_sequence.pxd with 99% similarity]
Cython/Includes/cpython/set.pxd [moved from Cython/Includes/python_set.pxd with 100% similarity]
Cython/Includes/cpython/string.pxd [moved from Cython/Includes/python_string.pxd with 99% similarity]
Cython/Includes/cpython/tuple.pxd [moved from Cython/Includes/python_tuple.pxd with 98% similarity]
Cython/Includes/cpython/type.pxd [moved from Cython/Includes/python_type.pxd with 100% similarity]
Cython/Includes/cpython/unicode.pxd [moved from Cython/Includes/python_unicode.pxd with 100% similarity]
Cython/Includes/cpython/version.pxd [moved from Cython/Includes/python_version.pxd with 100% similarity]
Cython/Includes/cpython/weakref.pxd [moved from Cython/Includes/python_weakref.pxd with 98% similarity]
Cython/Includes/python.pxd
tests/run/cython_includes.pyx [new file with mode: 0644]
tests/run/libc_stdlib.pyx [deleted file]