Merged changes in the trunk up to revision 54802.

This commit is contained in:
2013-02-24 03:39:20 +00:00
401 changed files with 4578 additions and 2960 deletions

View File

@@ -1491,7 +1491,9 @@ def write_sphinx_conf_py(basepath):
def execfile(filepath):
global_namespace = {"__file__": filepath, "__name__": "__main__"}
exec(compile(open(filepath).read(), filepath, 'exec'), global_namespace)
file_handle = open(filepath)
exec(compile(file_handle.read(), filepath, 'exec'), global_namespace)
file_handle.close()
def write_rst_contents(basepath):