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 serhiy.storchaka
Recipients pitrou, serhiy.storchaka
Date 2013-12-16.22:06:58
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <2764023.f6NhJqq1Xr@raxxla>
In-reply-to <1387230629.2303.4.camel@fsol>
Content
> Do you have performance numbers that show a significant improvement?

No. The benefit is too small (but theoretically it should be). Some changes 
also simplify the code. This is why this patch should be applied now, while 
pathlib code is not frozen yet.

For example "drv or root" replaced by "root or drv" because drv is always 
false on Unix and both arguments of "or" should be evaluated. This is very 
tiny optimization, but it has zero cos if apply it right now.
History
Date User Action Args
2013-12-16 22:06:59serhiy.storchakasetrecipients: + serhiy.storchaka, pitrou
2013-12-16 22:06:59serhiy.storchakalinkissue20002 messages
2013-12-16 22:06:58serhiy.storchakacreate