Commit Graph

4 Commits

Author SHA1 Message Date
Alex Chan
1f2a39c5f3 Tidy up Python file handlers
Rather than using `f = open(path).read()`, which leaves the file open
for an indeterminate period of time, switch to the `with open(path) as f`
idiom, which ensures the file is always closed correctly.
2015-12-22 22:33:18 +00:00
Alex Chan
ce7ce98a01 Update Python build scripts to use the print function
In Python 3, 'print' was changed from a statement to a function.  Using
the __future__ module allows scripts to use print function whether
running with Python 2.6+ or Python 3.x.  This commit changes as many
instances of print as I could find to use the print function and the
__future__ module.
2015-12-18 23:00:55 +00:00
Dave Abrahams
ce14c39c60 protocol graphing: +unconstrained associated types
Swift SVN r27037
2015-04-06 18:04:21 +00:00
Dave Abrahams
82849e5d60 protocol graph dumping
Swift SVN r27036
2015-04-06 15:40:44 +00:00