Changes between Version 4 and Version 6 of Ticket #28966
- Timestamp:
- 08/09/20 16:25:59 (6 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #28966
-
Property
Status
changed from
new
toneeds_review
-
Property
Branch
changed from
to
u/mkoeppe/provide_unicode_aliases_for_some_globals_in_python_3
-
Property
Commit
changed from
to
11aeb1542b40a8703f75f5ee38915cd91488d895
-
Property
Status
changed from
-
Ticket #28966 – Description
v4 v6 6 6 (This list can easily be expanded by modifying the dict in `IPython.completer.latex_symbols`.) 7 7 8 This enables nice-looking code like:9 8 {{{ 9 sage: π 10 pi 11 sage: _.n() 12 3.14159265358979 10 13 sage: sin(π) 11 14 0 12 sage: cos(π) 13 -1 15 sage: σ 16 Function that adds up (k-th powers of) the divisors of n 17 sage: Γ 18 <function gamma at 0x7ff3f051a710> 19 sage: ψ 20 <function psi at 0x7ff3f0531320> 21 sage: ζ 22 zeta 23 sage: ζ(-1) 24 -1/12 14 25 }}} 15 26 27