Changes between Version 5 and Version 6 of Ticket #12957
- Timestamp:
- 08/15/16 23:25:32 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #12957
- Property Cc novoselt added
-
Property
Milestone
changed from
sage-6.4
tosage-7.4
-
Ticket #12957 – Description
v5 v6 23 23 Category of finitely generated finite commutative groups 24 24 }}} 25 26 Moreover, with Sage 7.4.beta0 we now have: 27 {{{ 28 sage: CartesianProduct([1,2],[2,3]).category() 29 ... DeprecationWarning: CartesianProduct is deprecated. Use cartesian_product instead 30 See http://trac.sagemath.org/18411 for details. 31 #!/usr/bin/env python 32 Category of Cartesian products of finite enumerated sets 33 sage: cartesian_product([[1,2],[2,3]]).category() 34 Category of Cartesian products of finite enumerated sets 35 sage: Set([1,2,3]).category() 36 Category of finite sets 37 }}}