Merge branch 'master' into python-3.3-to-3.5

This commit is contained in:
rocky
2024-02-24 10:27:03 -05:00
5 changed files with 1 additions and 5 deletions

View File

@@ -1,6 +1,5 @@
#!/bin/bash
# Check out master branch and dependent development master branches
set -e
PYTHON_VERSION=3.8.18
bs=${BASH_SOURCE[0]}

View File

@@ -1,7 +1,6 @@
#!/bin/bash
# Check out python-2.4-to-2.7 and dependent development branches.
set -e
PYTHON_VERSION=2.4.6
bs=${BASH_SOURCE[0]}

View File

@@ -1,7 +1,6 @@
#!/bin/bash
# Check out python-3.0-to-3.2 and dependent development branches.
set -e
PYTHON_VERSION=3.0.1
bs=${BASH_SOURCE[0]}

View File

@@ -1,6 +1,5 @@
#!/bin/bash
# Check out python-3.3-to-3.5 and dependent development branches.
set -e
PYTHON_VERSION=3.3.7
bs=${BASH_SOURCE[0]}

View File

@@ -268,7 +268,7 @@ class NonterminalActions:
elem = elem[0]
if elem == "ADD_VALUE":
if self.version < (3, 0, 0):
value = "%r" % elem.pattr
value = "%r" % repr(elem.pattr)
else:
value = "%s" % str(elem.pattr)
else: