Mercurial > p > roundup > code
comparison roundup/hyperdb.py @ 4687:4960a2c21590
Python 2.3 workarounds cleanup
| author | anatoly techtonik <techtonik@gmail.com> |
|---|---|
| date | Wed, 28 Nov 2012 06:45:30 +0300 |
| parents | 22bc0426e348 |
| children | 6998ad77841e |
comparison
equal
deleted
inserted
replaced
| 4686:4e740f02e165 | 4687:4960a2c21590 |
|---|---|
| 20 """ | 20 """ |
| 21 __docformat__ = 'restructuredtext' | 21 __docformat__ = 'restructuredtext' |
| 22 | 22 |
| 23 # standard python modules | 23 # standard python modules |
| 24 import os, re, shutil, weakref | 24 import os, re, shutil, weakref |
| 25 # Python 2.3 ... 2.6 compatibility: | |
| 26 from roundup.anypy.sets_ import set | |
| 27 | 25 |
| 28 # roundup modules | 26 # roundup modules |
| 29 import date, password | 27 import date, password |
| 30 from support import ensureParentsExist, PrioList, sorted, reversed | 28 from support import ensureParentsExist, PrioList, sorted, reversed |
| 31 from roundup.i18n import _ | 29 from roundup.i18n import _ |
