- 19 Sep, 2015 3 commits
-
-
da_woods authored
These relate to non-member binary operators
-
da_woods authored
It wasn't finding nonmember operators with a class of the form: cdef cppclass C: C operator+(const C&, int) (i.e. with the class specified first)
-
da_woods authored
It's sometimes useful to have nonmember operators in c++ e.g. C operator+(int, const C&) (So int can come first) These could be defined outside the "cdef cppclass" section but if they were in a pxd file they weren't easy to import and use. They can now be defined with the "cdef cppclass" and will be found and used appropriately e.g. cdef cppclass C: C operator+(int, const C&) Appropriate tests have been added
-
- 07 Sep, 2015 1 commit
-
-
Robert Bradshaw authored
-
- 06 Sep, 2015 5 commits
-
-
Stefan Behnel authored
Conflicts: CHANGES.rst
-
Stefan Behnel authored
-
Stefan Behnel authored
revert integer literal suffixing again and instead generate C hex literals if no suffix is used to make the C compiler consider unsigned types for their values (see C standard 6.4.4)
-
Robert Bradshaw authored
Allow passing more than two -v's to cygdb.
-
Robert Bradshaw authored
Constants in float.pxd are not integers.
-
- 05 Sep, 2015 15 commits
-
-
Antony Lee authored
-
Antony Lee authored
-
Robert Bradshaw authored
Additions to includes
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
- append U-suffix only on coercion when the target type is unsigned - append L/LL-suffix when value looks too large for a smaller constant value type
-
Stefan Behnel authored
-
Stefan Behnel authored
- append U-suffix only on coercion when the target type is unsigned - append L/LL-suffix when value looks too large for a smaller constant value type
-
scoder authored
undef unwanted defines from longintrepr.h
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
- 04 Sep, 2015 10 commits
-
-
Jeroen Demeyer authored
-
Jeroen Demeyer authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
scoder authored
wrap POSIX dynamic linking API and stdio.h extensions
-
Stefan Behnel authored
-
Robert Bradshaw authored
-
- 03 Sep, 2015 1 commit
-
-
Robert Bradshaw authored
-
- 02 Sep, 2015 5 commits
-
-
Robert Bradshaw authored
Fix typo and add missing comma.
-
Jakub Wilk authored
-
Stefan Behnel authored
-
Stefan Behnel authored
Conflicts: Cython/Compiler/Optimize.py Cython/Compiler/StringEncoding.py
-
Stefan Behnel authored
fix bytes literal creation from compile-time DEF expressions (used to become Unicode strings due to missing encoding)
-