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

This commit is contained in:
rocky
2024-03-08 04:35:18 -05:00
24 changed files with 425 additions and 276 deletions

View File

@@ -1,7 +1,12 @@
#!/bin/bash
# Run tests over all Python versions in branch python-3.0-3.2
set -e
function finish {
cd $owd
}
owd=$(pwd)
trap finish EXIT
cd $(dirname ${BASH_SOURCE[0]})
if ! source ./pyenv-3.0-3.2-versions ; then
@@ -23,4 +28,4 @@ for version in $PYVERSIONS; do
fi
echo === $version ===
done
cd $owd
finish

View File

@@ -1,7 +1,7 @@
#/bin/bash
owd=$(pwd)
uncompyle6_merge_24_owd=$(pwd)
cd $(dirname ${BASH_SOURCE[0]})
if . ./setup-python-2.4.sh; then
git merge python-3.0-to-3.2
fi
cd $owd
cd $uncompyle6_merge_24_owd

View File

@@ -1,7 +1,7 @@
#/bin/bash
owd=$(pwd)
uncompyle6_merge_30_owd=$(pwd)
cd $(dirname ${BASH_SOURCE[0]})
if . ./setup-python-3.0.sh; then
git merge python-3.3-to-3.5
fi
cd $owd
cd $uncompyle6_merge_30_owd

View File

@@ -1,7 +1,7 @@
#/bin/bash
owd=$(pwd)
uncompyle6_merge_33_owd=$(pwd)
cd $(dirname ${BASH_SOURCE[0]})
if . ./setup-python-3.3.sh; then
git merge master
fi
cd $owd
cd $uncompyle6_merge_33_owd