Changeset 206f25d in trunk


Ignore:
Timestamp:
2020-09-29T17:50:59Z (5 years ago)
Author:
Itamar Turner-Trauring <itamar@…>
Branches:
master
Children:
4051a17
Parents:
02acd9d
Message:

Port to Python 3.

Location:
src/allmydata
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified src/allmydata/immutable/downloader/share.py

    r02acd9d r206f25d  
     1"""
     2Ported to Python 3.
     3"""
     4from __future__ import absolute_import
     5from __future__ import division
     6from __future__ import print_function
     7from __future__ import unicode_literals
     8
     9from future.utils import PY2
     10if 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
    112
    213import struct
  • TabularUnified src/allmydata/util/_python3.py

    r02acd9d r206f25d  
    3434    "allmydata.hashtree",
    3535    "allmydata.immutable.happiness_upload",
     36    "allmydata.immutable.downloader.share",
    3637    "allmydata.interfaces",
    3738    "allmydata.introducer.interfaces",
Note: See TracChangeset for help on using the changeset viewer.