Changeset aef293fb in trunk
- Timestamp:
- 2020-09-14T18:04:02Z (5 years ago)
- Branches:
- master
- Children:
- 6196a1c
- Parents:
- 6983c79
- git-author:
- Itamar Turner-Trauring <itamar@…> (2020-09-14 18:03:48)
- git-committer:
- Itamar Turner-Trauring <itamar@…> (2020-09-14 18:04:02)
- Location:
- src/allmydata
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified src/allmydata/storage/common.py ¶
r6983c79 raef293fb 1 from future.utils import PY3 1 """ 2 Ported to Python 3. 3 """ 4 from __future__ import unicode_literals 5 from __future__ import absolute_import 6 from __future__ import division 7 from __future__ import print_function 8 9 from future.utils import PY2, PY3 10 if PY2: 11 from future.builtins import filter, map, zip, ascii, chr, hex, input, next, oct, open, pow, round, super, bytes, dict, list, object, range, str, max, min # noqa: F401 2 12 3 13 import os.path -
TabularUnified src/allmydata/util/_python3.py ¶
r6983c79 raef293fb 36 36 "allmydata.interfaces", 37 37 "allmydata.monitor", 38 "allmydata.storage.common", 38 39 "allmydata.storage.crawler", 39 40 "allmydata.storage.expirer",
Note: See TracChangeset
for help on using the changeset viewer.