|
From: <kin...@us...> - 2023-09-07 20:57:49
|
Revision: 7155
http://sourceforge.net/p/teem/code/7155
Author: kindlmann
Date: 2023-09-07 20:57:42 +0000 (Thu, 07 Sep 2023)
Log Message:
-----------
changing URL for where GLK learned this trick
Modified Paths:
--------------
teem/trunk/python/cffi/build_teem.py
teem/trunk/python/cffi/exult.py
teem/trunk/python/cffi/lliibb.py
teem/trunk/python/cffi/teem.py
Modified: teem/trunk/python/cffi/build_teem.py
===================================================================
--- teem/trunk/python/cffi/build_teem.py 2023-08-11 16:07:24 UTC (rev 7154)
+++ teem/trunk/python/cffi/build_teem.py 2023-09-07 20:57:42 UTC (rev 7155)
@@ -32,8 +32,8 @@
import exult
-# halt if python2; thanks to https://preview.tinyurl.com/44f2beza
-_x, *_y = 1, 2 # NOTE: A SyntaxError here means you need python3, not python2
+# halt if python2; thanks to https://stackoverflow.com/a/65407535/1465384
+_x, *_y = 1, 2 # NOTE: A SyntaxError means you need Python3, not Python2
del _x, _y
# learned:
Modified: teem/trunk/python/cffi/exult.py
===================================================================
--- teem/trunk/python/cffi/exult.py 2023-08-11 16:07:24 UTC (rev 7154)
+++ teem/trunk/python/cffi/exult.py 2023-09-07 20:57:42 UTC (rev 7155)
@@ -46,8 +46,8 @@
import cffi
-# halt if python2; thanks to https://preview.tinyurl.com/44f2beza
-_x, *_y = 1, 2 # NOTE: A SyntaxError here means you need python3, not python2
+# halt if python2; thanks to https://stackoverflow.com/a/65407535/1465384
+_x, *_y = 1, 2 # NOTE: A SyntaxError means you need Python3, not Python2
del _x, _y
# info about all the Teem libraries (TEEM_LIB_LIST)
Modified: teem/trunk/python/cffi/lliibb.py
===================================================================
--- teem/trunk/python/cffi/lliibb.py 2023-08-11 16:07:24 UTC (rev 7154)
+++ teem/trunk/python/cffi/lliibb.py 2023-09-07 20:57:42 UTC (rev 7155)
@@ -32,8 +32,8 @@
import math as _math # # likely used in _BIFF_DICT, below, for testing function return values
-# halt if python2; thanks to https://preview.tinyurl.com/44f2beza
-_x, *_y = 1, 2 # NOTE: A SyntaxError here means you need python3, not python2
+# halt if python2; thanks to https://stackoverflow.com/a/65407535/1465384
+_x, *_y = 1, 2 # NOTE: A SyntaxError means you need Python3, not Python2
del _x, _y
Modified: teem/trunk/python/cffi/teem.py
===================================================================
--- teem/trunk/python/cffi/teem.py 2023-08-11 16:07:24 UTC (rev 7154)
+++ teem/trunk/python/cffi/teem.py 2023-09-07 20:57:42 UTC (rev 7155)
@@ -32,8 +32,8 @@
import math as _math # # likely used in _BIFF_DICT, below, for testing function return values
-# halt if python2; thanks to https://preview.tinyurl.com/44f2beza
-_x, *_y = 1, 2 # NOTE: A SyntaxError here means you need python3, not python2
+# halt if python2; thanks to https://stackoverflow.com/a/65407535/1465384
+_x, *_y = 1, 2 # NOTE: A SyntaxError means you need Python3, not Python2
del _x, _y
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|