aboutsummaryrefslogtreecommitdiffstats
path: root/lang/python/tests
diff options
context:
space:
mode:
authorDaniel Kahn Gillmor <[email protected]>2018-10-18 04:10:19 +0000
committerDaniel Kahn Gillmor <[email protected]>2018-10-18 04:28:51 +0000
commita81534fed8ff34b67a2726d333d9725454663c82 (patch)
tree37a26dab846072504a8b67becf9a9486574bbc26 /lang/python/tests
parentdoc: use https:// for www.gnu.org (diff)
downloadgpgme-a81534fed8ff34b67a2726d333d9725454663c82.tar.gz
gpgme-a81534fed8ff34b67a2726d333d9725454663c82.zip
doc: convert more http:// links to https://
-- Signed-off-by: Daniel Kahn Gillmor <[email protected]>
Diffstat (limited to 'lang/python/tests')
-rwxr-xr-xlang/python/tests/t-idiomatic.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lang/python/tests/t-idiomatic.py b/lang/python/tests/t-idiomatic.py
index 36f81372..bc05e6c6 100755
--- a/lang/python/tests/t-idiomatic.py
+++ b/lang/python/tests/t-idiomatic.py
@@ -71,7 +71,7 @@ if sys.version_info[0] == 3:
# hence we cannot use it as sink.
# XXX: Python's io.BytesIo.truncate does not work as advertised.
- # http://bugs.python.org/issue27261
+ # https://bugs.python.org/issue27261
bio = io.BytesIO()
bio.truncate(1)
if len(bio.getvalue()) != 1: