* Tim Rühsen [181014 15:07]:
> On 13.10.18 23:19, Darshit Shah wrote:
> > Well, I don't think there will be a Python 4 for a very long time. The major
> > version number changes only for a large backwards incompatibility. It's
> > taken
> > them ~10 years and people still not on Python 3.
> >
>
On 13.10.18 23:19, Darshit Shah wrote:
> Well, I don't think there will be a Python 4 for a very long time. The major
> version number changes only for a large backwards incompatibility. It's taken
> them ~10 years and people still not on Python 3.
>
> Anyways, I don't think this will break even w
Darshit Shah wrote:
+# If using Python 2, ensure that at least version 2.7 is used. Older versions
+# are not supported
+if not PYTHON3 or sys.version_info[1] < 7:
+print("Python version must be atleast 2.7. Exiting.")
Shouldn't this be:
if not PYTHON3 and sys.version_info[1] < 7:
--
--
That's good to hear! :-)
However in that case, let me point out that there is already a significant
amount of code and checks in there for Python 2 compatibility. Removing even
some of them might help with the overall maintainability of the codebase.
And for Wget2, we will change our base require
Well, I don't think there will be a Python 4 for a very long time. The major
version number changes only for a large backwards incompatibility. It's taken
them ~10 years and people still not on Python 3.
Anyways, I don't think this will break even with v4. Since the check is only
for ensuring the
Hi Darshit,
> gnulib-tool.py will currently crash immediately on start if the underlying
> Python version is 2.6 or lower.
It's intentional that it supports only Python 3. See
https://lists.gnu.org/archive/html/bug-gnulib/2017-09/msg00123.html
Bruno
On 13.10.18 21:28, Darshit Shah wrote:
> gnulib-tool.py will currently crash immediately on start if the underlying
> Python version is 2.6 or lower. The immediate crash that is seen occurs during
> the check for the Python version. The check uses a syntax which was only
> introduced in 2.7. I have
gnulib-tool.py will currently crash immediately on start if the underlying
Python version is 2.6 or lower. The immediate crash that is seen occurs during
the check for the Python version. The check uses a syntax which was only
introduced in 2.7. I haven't checked, but I believe that the rest of the