robertwb / issues-import-test

0 stars 0 forks source link

Several inplace operators not defined #1

Closed robertwb closed 8 years ago

robertwb commented 8 years ago

Reported by robertwb on 5 May 2008 23:54 UTC The following produce error messages (regardless of a and n):

a <<= n
a >>= n
a **= n
a //= n

http://docs.python.org/lib/module-operator.html

This is because Pyrex only supported single and two-character operators in its lexicon. (Of course, his should change.)

Migrated-From: http://trac.cython.org/ticket/1

robertwb commented 8 years ago

Modified by robertwb on 7 Jun 2008 06:52 UTC

robertwb commented 8 years ago

Modified by robertwb on 19 Aug 2008 03:55 UTC