Changes between Initial Version and Version 5 of Ticket #18083
- Timestamp:
- 03/30/15 13:48:39 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #18083
-
Property
Commit
changed from
to
c98b7d8aff011348a86729eac651227d60b6eb19
-
Property
Dependencies
changed from
#12446
to#12446, #18084
-
Property
Branch
changed from
to
u/jdemeyer/stop_using_old_style_globals
-
Property
Commit
changed from
-
Ticket #18083 – Description
initial v5 1 Instead of using Cython's `old_style_globals` option, we use the new `user_globals` from #12446 to access `globals()`. 2 3 In order to support 4 {{{ 5 sage: sage_eval( ("f(x)=x^2", "f(1)") ) 6 }}} 7 we make a small change to the preparser: we ensure that `f(x) = ...` makes `x` available ''both'' as global and as local.