diff options
| author | Julian Andres Klode <jak@debian.org> | 2015-06-11 19:44:34 +0200 | 
|---|---|---|
| committer | Julian Andres Klode <jak@debian.org> | 2015-06-11 19:46:32 +0200 | 
| commit | f9fc74f216ebc613370b1b24a3e8ce935847b06c (patch) | |
| tree | f260229b163aca263c15666ea684a905a781f4e5 | |
| parent | 3ae6e69473c785b6c56cfb27c31a7c9375416f06 (diff) | |
| download | python-apt-f9fc74f216ebc613370b1b24a3e8ce935847b06c.tar.gz | |
tests/test_large_file.py: make pep8 happy
The spacing around the ** operator looks ugly, and that's fixed in
pep8 1.6.0, but we only have 1.5.7.
Gbp-Dch: ignore
| -rw-r--r-- | tests/test_large_file.py | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/tests/test_large_file.py b/tests/test_large_file.py index 2e873131..852c8579 100644 --- a/tests/test_large_file.py +++ b/tests/test_large_file.py @@ -5,7 +5,8 @@ import unittest  import apt_inst -IS_NOT_32BIT = sys.maxsize > 2**32 +IS_NOT_32BIT = sys.maxsize > 2 ** 32 +  @unittest.skipIf(IS_NOT_32BIT, "Large File support is for 32 bit systems")  class testHashes(unittest.TestCase): | 
