[pypy-commit] pypy translation-cleanup: Add module summaries

rlamy noreply at buildbot.pypy.org
Fri Oct 12 17:34:28 CEST 2012


Author: Ronan Lamy <ronan.lamy at gmail.com>
Branch: translation-cleanup
Changeset: r58067:4a7b9de49e17
Date: 2012-10-12 16:33 +0100
http://bitbucket.org/pypy/pypy/changeset/4a7b9de49e17/

Log:	Add module summaries

diff --git a/pypy/objspace/flow/flowcontext.py b/pypy/objspace/flow/flowcontext.py
--- a/pypy/objspace/flow/flowcontext.py
+++ b/pypy/objspace/flow/flowcontext.py
@@ -1,3 +1,7 @@
+"""Implements the core parts of flow graph creation, in tandem
+with pypy.objspace.flow.objspace.
+"""
+
 import sys
 import collections
 
diff --git a/pypy/objspace/flow/generator.py b/pypy/objspace/flow/generator.py
--- a/pypy/objspace/flow/generator.py
+++ b/pypy/objspace/flow/generator.py
@@ -1,3 +1,5 @@
+"""Flow graph building for generators"""
+
 from pypy.objspace.flow.model import Block, Link, SpaceOperation, checkgraph
 from pypy.objspace.flow.model import Variable, Constant
 from pypy.translator.unsimplify import insert_empty_startblock
diff --git a/pypy/objspace/flow/objspace.py b/pypy/objspace/flow/objspace.py
--- a/pypy/objspace/flow/objspace.py
+++ b/pypy/objspace/flow/objspace.py
@@ -1,4 +1,7 @@
-# ______________________________________________________________________
+"""Implements the core parts of flow graph creation, in tandem
+with pypy.objspace.flow.flowcontext.
+"""
+
 import __builtin__
 import sys
 import types


More information about the pypy-commit mailing list