summaryrefslogtreecommitdiff
path: root/update_stdlib.sh
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2013-11-07 09:26:32 -0800
committerGuido van Rossum <guido@python.org>2013-11-07 09:26:32 -0800
commite5e2719784574fcb757680908870673ac471c34f (patch)
treec9fffbdfe089879355cc73f32a3225ed19df94ad /update_stdlib.sh
parentaed036c1a70aa5ec8081e2888afe321d615b61a4 (diff)
downloadtrollius-e5e2719784574fcb757680908870673ac471c34f.tar.gz
Skip test_selectors.py when copying to stdlib.
Diffstat (limited to 'update_stdlib.sh')
-rwxr-xr-xupdate_stdlib.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/update_stdlib.sh b/update_stdlib.sh
index ceaa8f5..828de2c 100755
--- a/update_stdlib.sh
+++ b/update_stdlib.sh
@@ -49,6 +49,10 @@ done
for i in `(cd tests && ls *.py sample.???)`
do
+ if [ $i == test_selectors.py ]
+ then
+ continue
+ fi
maybe_copy tests/$i Lib/test/test_asyncio/$i
done