diff options
Diffstat (limited to 'to3.sh')
-rwxr-xr-x | to3.sh | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -0,0 +1,9 @@ +#!/bin/sh +mkdir python3 +for i in BeautifulSoup*.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
\ No newline at end of file |