An error occurred fetching the project authors.
- 26 Aug, 2008 1 commit
-
-
Stefan Behnel authored
-
- 25 Aug, 2008 8 commits
-
-
Stefan Behnel authored
-
Dag Sverre Seljebotn authored
-
Dag Sverre Seljebotn authored
-
Stefan Behnel authored
some code cleanup and beautification, fix error message to match Python when passing too many positional arguments into a function with required keyword arguments
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
removed some redundancy from arg parsing helper functions (and some of the helper functions) general cleanup and performance improvements (now a lot faster for common kw passing casese)
-
- 23 Aug, 2008 5 commits
-
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
optimisation: store keyword argument names as Python strings to avoid string creation within PyDict_GetItemString()
-
- 22 Aug, 2008 7 commits
-
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
cosolidate exception messages cleanup of utility code
-
Stefan Behnel authored
changed more exception messages to what Py3 raises some cleanup
-
Stefan Behnel authored
use argument exception messages from Python 2.6 TODO: handling of keyword-only arguments seems to require more work TODO: clean up helper functions (currently somewhat redundant)
-
- 21 Aug, 2008 1 commit
-
-
Dag Sverre Seljebotn authored
-
- 16 Aug, 2008 2 commits
-
-
HoytKoepke authored
-
Robert Bradshaw authored
-
- 15 Aug, 2008 10 commits
-
-
david@evans-2.local authored
-
Dag Sverre Seljebotn authored
-
Dag Sverre Seljebotn authored
-
Dag Sverre Seljebotn authored
-
Dag Sverre Seljebotn authored
-
Dag Sverre Seljebotn authored
This time hopefully without breaking other inplace operators.
-
Dag Sverre Seljebotn authored
-
Dag Sverre Seljebotn authored
-
Dag Sverre Seljebotn authored
-
Stefan Behnel authored
String literals pass through the compiler as follows: - unicode string literals are stored as unicode strings and encoded to UTF-8 on the way out - byte string literals are stored as correctly encoded byte strings by unescaping the source string literal into the corresponding byte sequence. No further encoding is done later on! - char literals are stored as byte strings of length 1. This can be verified by the parser now, e.g. a non-ASCII char literal in UTF-8 source code will result in an error, as it would end up as two or more bytes in the C code, which can no longer be represented as a C char. Storing byte strings is necessary as we otherwise loose the ability to encode byte string literals on the way out. They do not necessarily contain only bytes that fit into the source code encoding as the source can use escape sequences to represent them. Previously, ASCII encoded source code could not contain byte string literals with properly escaped non-ASCII bytes. Another bug that was fixed: in Python, escape sequences behave different in unicode strings (where they represent the character code) and byte strings (where they represent a byte value). Previously, they resulted in the same byte value in Cython code. This is only a problem for non-ASCII escapes, since the character code and the byte value of ASCII characters are identical.
-
- 14 Aug, 2008 1 commit
-
-
Robert Bradshaw authored
-
- 12 Aug, 2008 2 commits
-
-
Stefan Behnel authored
-
Stefan Behnel authored
-
- 09 Aug, 2008 1 commit
-
-
Stefan Behnel authored
fix format string in __Pyx_AddTraceback() to let it match input types (line number is not defined as unsigned)
-
- 08 Aug, 2008 2 commits
-
-
Robert Bradshaw authored
-
Robert Bradshaw authored
-