diff options
Diffstat (limited to '')
| -rwxr-xr-x | lang/python/tests/t-wrapper.py | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/python/tests/t-wrapper.py b/lang/python/tests/t-wrapper.py index 08a320d2..020e71e5 100755 --- a/lang/python/tests/t-wrapper.py +++ b/lang/python/tests/t-wrapper.py @@ -19,9 +19,9 @@  import gpg  import support -_ = support # to appease pyflakes. +_ = support  # to appease pyflakes.  d0 = gpg.Data() -d0.seek # trigger on-demand-wrapping +d0.seek  # trigger on-demand-wrapping  assert d0.seek == d0.seek, "Generated wrapper functions are not cached"  assert hasattr(gpg.Data, 'seek'), "Generated wrapper functions are not shared"  | 
