This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author rhettinger
Recipients mark.dickinson, rhettinger, serhiy.storchaka, tim.peters
Date 2019-06-06.16:30:28
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1559838628.34.0.228461842236.issue37178@roundup.psfhosted.org>
In-reply-to
Content
The perm() function should have a one argument form and change its signature to ``perm(n, k=None)``.  This matches what itertools:

itertools.permutations(iterable, r=None)
   Return successive r length permutations of elements
   in the iterable.

   If r is not specified or is None, then r defaults to
   the length of the iterable and all possible full-length
   permutations are generated.
History
Date User Action Args
2019-06-06 16:30:28rhettingersetrecipients: + rhettinger, tim.peters, mark.dickinson, serhiy.storchaka
2019-06-06 16:30:28rhettingersetmessageid: <1559838628.34.0.228461842236.issue37178@roundup.psfhosted.org>
2019-06-06 16:30:28rhettingerlinkissue37178 messages
2019-06-06 16:30:28rhettingercreate