Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Trac #30602: Partitions_n.__iter__ creates partitions with int (inste…
…ad of Integer) parts Several iterators over partitions return partitions whose parts are of type `int` instead of `Integer`: {{{ sage: type(Partitions(3)[0][0]) <class 'int'> sage: type(Partitions(3, length=3)[0][0]) <class 'int'> sage: type(Partitions(3, max_part=3)[0][0]) <class 'sage.rings.integer.Integer'> }}} URL: https://trac.sagemath.org/30602 Reported by: mantepse Ticket author(s): Mike Hansen Reviewer(s): Travis Scrimshaw
- Loading branch information