Skip to content

Commit 2484ceb

Browse files
author
Sergi Almacellas Abellana
authored
Remove future imports (#179)
1 parent fdb639b commit 2484ceb

File tree

5 files changed

+0
-10
lines changed

5 files changed

+0
-10
lines changed

signxml/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import absolute_import, division, print_function, unicode_literals
2-
31
from base64 import b64encode, b64decode
42
from enum import Enum
53

signxml/exceptions.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
SignXML exception types.
33
"""
44

5-
from __future__ import absolute_import, division, print_function, unicode_literals
6-
75
import cryptography.exceptions
86

97
class InvalidSignature(cryptography.exceptions.InvalidSignature):

signxml/util/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
bytes_to_long, long_to_bytes copied from https://github.com/dlitz/pycrypto/blob/master/lib/Crypto/Util/number.py
55
"""
66

7-
from __future__ import absolute_import, division, print_function, unicode_literals
8-
97
import math
108
import os, sys, re, struct, textwrap
119
from xml.etree import ElementTree as stdlibElementTree

test/generate_125_example.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import absolute_import, division, print_function, unicode_literals
2-
31
import os.path
42
from base64 import b64encode
53

test/test.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
#!/usr/bin/env python
22
# coding: utf-8
33

4-
from __future__ import absolute_import, division, print_function, unicode_literals
5-
64
import os, sys, unittest, itertools, re
75
from glob import glob
86
from xml.etree import ElementTree as stdlibElementTree

0 commit comments

Comments
 (0)