Hi,

Lisandro Dalcin wrote:
> Moreover, I can distribute a single set of generated C sources (I do
> not want users have to install Cython to build my package), and they
> build and the final extension module work just fine.

That's exactly my intention. Cython language specifics must be handled by the
Cython parser, and specifics of the runtime environment must be handled by the
C compiler.

In the context of unicode literals, this means: once the parser has determined
that a string is a unicode literal or a bytes literal in the source code,
later steps in the compiler run (Cython or C compiler) must not change this.

Stefan
_______________________________________________
Cython-dev mailing list
[email protected]
http://codespeak.net/mailman/listinfo/cython-dev

Reply via email to