Changeset dffcdf2 in trunk
- Timestamp:
- 2022-04-11T19:05:32Z (3 years ago)
- Branches:
- master
- Children:
- bc6dafa
- Parents:
- f19bf8cf
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified src/allmydata/test/cli/test_invite.py ¶
rf19bf8cf rdffcdf2 1 1 """ 2 Ported to Pythn 3.2 Tests for ``tahoe invite``. 3 3 """ 4 from __future__ import absolute_import5 from __future__ import division6 from __future__ import print_function7 from __future__ import unicode_literals8 9 from future.utils import PY210 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: F40112 4 13 5 import os … … 15 7 import json 16 8 from os.path import join 17 18 try: 19 from typing import Optional, Sequence 20 except ImportError: 21 pass 9 from typing import Optional, Sequence 22 10 23 11 from twisted.trial import unittest
Note: See TracChangeset
for help on using the changeset viewer.