summaryrefslogtreecommitdiff
path: root/update_stdlib.sh
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-12-18 12:28:08 +0100
committerVictor Stinner <victor.stinner@gmail.com>2014-12-18 12:28:08 +0100
commit5fb15e5a4ba08dfa7a1985422578ca1da88eefdd (patch)
tree927f9a2c8cc435fd5e2d08eb3c3176a3e068f770 /update_stdlib.sh
parentf37ac51750043efeafd94151ef8f38c838509e6d (diff)
downloadtrollius-5fb15e5a4ba08dfa7a1985422578ca1da88eefdd.tar.gz
Copy a subset of test.support from CPython 3.5 to no more depend on the test
module to run the asyncio test suite. The test module is rarely installed.
Diffstat (limited to 'update_stdlib.sh')
-rwxr-xr-xupdate_stdlib.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/update_stdlib.sh b/update_stdlib.sh
index bb6251a..0cdbb1b 100755
--- a/update_stdlib.sh
+++ b/update_stdlib.sh
@@ -40,6 +40,11 @@ maybe_copy()
for i in `(cd asyncio && ls *.py)`
do
+ if [ $i == test_support.py ]
+ then
+ continue
+ fi
+
if [ $i == selectors.py ]
then
if [ "`(cd $CPYTHON; hg branch)`" == "3.4" ]