Changes between Version 7 and Version 8 of Ticket #23338
- Timestamp:
- 06/29/17 21:00:10 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #23338 – Description
v7 v8 9 9 4. Make the code easier to understand. 10 10 11 5. Check more error conditions, for example currently we have 11 5. Add a new keyword argument `multivariate` to force a multivariate polynomial ring, even if there is only 1 variable. 12 13 6. Check more error conditions, for example currently we have 12 14 {{{ 13 15 sage: PolynomialRing(QQ, name="x", names="y") … … 15 17 }}} 16 18 17 6. Change some arguments of `PolynomialRing()` to keyword-only arguments. This does break some existing uses of `PolynomialRing()` (some even wrong: some Singular code was passing `sparse="lex"` instead or `order="lex"`)19 7. Change some arguments of `PolynomialRing()` to keyword-only arguments. This does break some existing uses of `PolynomialRing()` (some even wrong: some Singular code was passing `sparse="lex"` instead or `order="lex"`) 18 20 19 Apart from items 5 and 6, no existing functionality is changed: this is just a clean-up.21 Apart from items 6 and 7, no existing functionality is changed.