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 terry.reedy
Recipients blokeley, pitrou, r.david.murray, terry.reedy
Date 2011-03-04.21:49:07
SpamBayes Score 0.00012989248
Marked as misclassified No
Message-id <1299275348.06.0.396476837961.issue11344@psf.upfronthosting.co.za>
In-reply-to
Content
I am inclined to -1 also.

a. The proposed behavior is anti-obvious to me: the higher the height, the shorter the result. Calling param 'drop' would be better.

b. Not every one-liner should be wrapped.

>>> path.rsplit('/',0)[0]
'/ggparent/gparent/parent/myfile.txt'
>>> path.rsplit('/',1)[0]
'/ggparent/gparent/parent'
>>> path.rsplit('/',2)[0]
'/ggparent/gparent'
>>> path.rsplit('/',3)[0]
'/ggparent'

Note: above gives '' for maxsplit out of range, easily converted to exception in function wrapper.
History
Date User Action Args
2011-03-04 21:49:08terry.reedysetrecipients: + terry.reedy, pitrou, r.david.murray, blokeley
2011-03-04 21:49:08terry.reedysetmessageid: <1299275348.06.0.396476837961.issue11344@psf.upfronthosting.co.za>
2011-03-04 21:49:07terry.reedylinkissue11344 messages
2011-03-04 21:49:07terry.reedycreate