[pypy-commit] pypy remove-list-smm-2: Add __all__ declaration.

Manuel Jacob noreply at buildbot.pypy.org
Sun May 19 13:56:37 CEST 2013


Author: Manuel Jacob
Branch: remove-list-smm-2
Changeset: r64316:519a5386eae6
Date: 2013-05-18 13:54 +0200
http://bitbucket.org/pypy/pypy/changeset/519a5386eae6/

Log:	Add __all__ declaration.

diff --git a/pypy/objspace/std/listobject.py b/pypy/objspace/std/listobject.py
--- a/pypy/objspace/std/listobject.py
+++ b/pypy/objspace/std/listobject.py
@@ -17,6 +17,8 @@
     resizelist_hint)
 from rpython.tool.sourcetools import func_with_new_name
 
+__all__ = ['W_ListObject', 'make_range_list', 'make_empty_list_with_size']
+
 
 UNROLL_CUTOFF = 5
 


More information about the pypy-commit mailing list