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 teoliphant
Recipients loewis, pitrou, riq, teoliphant
Date 2008-08-24.21:34:27
SpamBayes Score 0.00043428747
Marked as misclassified No
Message-id <1219613668.79.0.861833222429.issue3101@psf.upfronthosting.co.za>
In-reply-to
Content
I've added comments in the code to document these functions.  I have no
opinion where they live except they should probably be available to
extensions modules. 

These routines increment an N-length counter representing a position in
an N-dimensional array with wrap-around when the counter reaches the
size of the dimension.  Thus, for a (2,3) array we have:

F-version

0,0
1,0
2,0
0,1
1,1
2,1

C-version
0,0
0,1
0,2
1,0
1,1
1,2
History
Date User Action Args
2008-08-24 21:34:28teoliphantsetrecipients: + teoliphant, loewis, pitrou, riq
2008-08-24 21:34:28teoliphantsetmessageid: <1219613668.79.0.861833222429.issue3101@psf.upfronthosting.co.za>
2008-08-24 21:34:27teoliphantlinkissue3101 messages
2008-08-24 21:34:27teoliphantcreate