[issue17102] tarfile extract can write files outside the destination path

2013-02-01 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- nosy: +serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:/

[issue17100] rotating an ordereddict

2013-02-01 Thread Antoine Pitrou
Antoine Pitrou added the comment: > It is trivial. > > def rotate(od, n): > for i in range(n): > k, v = od.popitem(False) > od[k] = v That's O(n), with many spurious insertions and deletions. > And those functions look too specialized. How so? rotating sounds quite generic

<    1   2