1. 02 Jul, 2010 1 commit
  2. 30 Jun, 2010 1 commit
  3. 25 Jun, 2010 1 commit
  4. 15 Jun, 2010 1 commit
  5. 11 Jun, 2010 1 commit
    • Lisandro Dalcin's avatar
      move legacy pxd files to Cython/Includes/Deprecated · 0d04f2bb
      Lisandro Dalcin authored
      --HG--
      rename : Cython/Includes/python.pxd => Cython/Includes/Deprecated/python.pxd
      rename : Cython/Includes/python2.5.pxd => Cython/Includes/Deprecated/python2.5.pxd
      rename : Cython/Includes/python_bool.pxd => Cython/Includes/Deprecated/python_bool.pxd
      rename : Cython/Includes/python_buffer.pxd => Cython/Includes/Deprecated/python_buffer.pxd
      rename : Cython/Includes/python_bytes.pxd => Cython/Includes/Deprecated/python_bytes.pxd
      rename : Cython/Includes/python_cobject.pxd => Cython/Includes/Deprecated/python_cobject.pxd
      rename : Cython/Includes/python_complex.pxd => Cython/Includes/Deprecated/python_complex.pxd
      rename : Cython/Includes/python_dict.pxd => Cython/Includes/Deprecated/python_dict.pxd
      rename : Cython/Includes/python_exc.pxd => Cython/Includes/Deprecated/python_exc.pxd
      rename : Cython/Includes/python_float.pxd => Cython/Includes/Deprecated/python_float.pxd
      rename : Cython/Includes/python_function.pxd => Cython/Includes/Deprecated/python_function.pxd
      rename : Cython/Includes/python_getargs.pxd => Cython/Includes/Deprecated/python_getargs.pxd
      rename : Cython/Includes/python_instance.pxd => Cython/Includes/Deprecated/python_instance.pxd
      rename : Cython/Includes/python_int.pxd => Cython/Includes/Deprecated/python_int.pxd
      rename : Cython/Includes/python_iterator.pxd => Cython/Includes/Deprecated/python_iterator.pxd
      rename : Cython/Includes/python_list.pxd => Cython/Includes/Deprecated/python_list.pxd
      rename : Cython/Includes/python_long.pxd => Cython/Includes/Deprecated/python_long.pxd
      rename : Cython/Includes/python_mapping.pxd => Cython/Includes/Deprecated/python_mapping.pxd
      rename : Cython/Includes/python_mem.pxd => Cython/Includes/Deprecated/python_mem.pxd
      rename : Cython/Includes/python_method.pxd => Cython/Includes/Deprecated/python_method.pxd
      rename : Cython/Includes/python_module.pxd => Cython/Includes/Deprecated/python_module.pxd
      rename : Cython/Includes/python_number.pxd => Cython/Includes/Deprecated/python_number.pxd
      rename : Cython/Includes/python_object.pxd => Cython/Includes/Deprecated/python_object.pxd
      rename : Cython/Includes/python_oldbuffer.pxd => Cython/Includes/Deprecated/python_oldbuffer.pxd
      rename : Cython/Includes/python_pycapsule.pxd => Cython/Includes/Deprecated/python_pycapsule.pxd
      rename : Cython/Includes/python_ref.pxd => Cython/Includes/Deprecated/python_ref.pxd
      rename : Cython/Includes/python_sequence.pxd => Cython/Includes/Deprecated/python_sequence.pxd
      rename : Cython/Includes/python_set.pxd => Cython/Includes/Deprecated/python_set.pxd
      rename : Cython/Includes/python_string.pxd => Cython/Includes/Deprecated/python_string.pxd
      rename : Cython/Includes/python_tuple.pxd => Cython/Includes/Deprecated/python_tuple.pxd
      rename : Cython/Includes/python_type.pxd => Cython/Includes/Deprecated/python_type.pxd
      rename : Cython/Includes/python_unicode.pxd => Cython/Includes/Deprecated/python_unicode.pxd
      rename : Cython/Includes/python_version.pxd => Cython/Includes/Deprecated/python_version.pxd
      rename : Cython/Includes/python_weakref.pxd => Cython/Includes/Deprecated/python_weakref.pxd
      rename : Cython/Includes/stdio.pxd => Cython/Includes/Deprecated/stdio.pxd
      rename : Cython/Includes/stdlib.pxd => Cython/Includes/Deprecated/stdlib.pxd
      rename : Cython/Includes/stl.pxd => Cython/Includes/Deprecated/stl.pxd
      0d04f2bb
  6. 09 Jun, 2010 1 commit
  7. 10 Jun, 2010 1 commit
  8. 07 Jun, 2010 4 commits
  9. 02 Jun, 2010 2 commits
  10. 01 Jun, 2010 4 commits
  11. 31 May, 2010 3 commits
  12. 28 May, 2010 1 commit
  13. 27 May, 2010 6 commits
  14. 26 May, 2010 1 commit
  15. 25 May, 2010 1 commit
  16. 24 May, 2010 1 commit
  17. 17 May, 2010 5 commits
  18. 16 May, 2010 2 commits
  19. 15 May, 2010 3 commits
    • Robert Bradshaw's avatar
      merge · 6d3aa1bd
      Robert Bradshaw authored
      6d3aa1bd
    • Robert Bradshaw's avatar
      Add failing test to bugs list. · 8737e4ac
      Robert Bradshaw authored
      8737e4ac
    • David Barnett's avatar
      C++ failures / tests · 57fe4a6e
      David Barnett authored
      I noticed two failures to compile that I think are bugs:
       - "ctypedef Foo[int] Bar" gives a syntax error (i.e., there doesn't seem to be any way to typedef a templated type).
       - Defining a struct in a namespace and trying to convert it to a Python dict doesn't work. Instead you get nasty "__pyx_convert__to_py_THENAMESPACE" errors from the C++ compiler (it doesn't mangle the cname properly and tries to define __pyx_convert__to_py_THENAMESPACE::THESTRUCT).
      
      I made a patch to *add tests* for the two bugs (not fix them).
      57fe4a6e