blob: 26b32468dcf1d05401a8a7bd713f3c1d887b5656 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh
mkdir python3
for i in BeautifulSoupTests.py builder.py element.py dammit.py
do
cp $i python3/
2to3-3.0 -x next $i | patch -p0 python3/$i
cp python3/$i python3/$i.orig
patch -p0 python3/$i < $i.3.diff
done
|