block Core() class constructor
[vapoursynth-svn.git] / bootstrap.py
blob03c86791fd8391dd007f32aaf62e2911c324013d
1 #!/usr/bin/env python
3 import os, stat, urllib2
5 f = urllib2.urlopen('http://waf.googlecode.com/files/waf-1.7.9')
7 with open('waf', 'wb') as waf:
8 waf.write(f.read())
10 os.chmod('waf', os.stat('waf').st_mode | stat.S_IXUSR)