[pypy-svn] r53567 - pypy/dist/pypy/lib

arigo at codespeak.net arigo at codespeak.net
Tue Apr 8 12:10:57 CEST 2008


Author: arigo
Date: Tue Apr  8 12:10:57 2008
New Revision: 53567

Modified:
   pypy/dist/pypy/lib/readline.py
Log:
Add an __all__.


Modified: pypy/dist/pypy/lib/readline.py
==============================================================================
--- pypy/dist/pypy/lib/readline.py	(original)
+++ pypy/dist/pypy/lib/readline.py	Tue Apr  8 12:10:57 2008
@@ -7,6 +7,30 @@
 
 ENCODING = 'latin1'     # XXX hard-coded
 
+__all__ = ['add_history',
+           'clear_history',
+           'get_begidx',
+           'get_completer',
+           'get_completer_delims',
+           'get_current_history_length',
+           'get_endidx',
+           'get_history_item',
+           'get_history_length',
+           'get_line_buffer',
+           'insert_text',
+           'parse_and_bind',
+           'read_history_file',
+           'read_init_file',
+           'redisplay',
+           'remove_history_item',
+           'replace_history_item',
+           'set_completer',
+           'set_completer_delims',
+           'set_history_length',
+           'set_pre_input_hook',
+           'set_startup_hook',
+           'write_history_file']
+
 # ____________________________________________________________
 
 class _ReaderMixin(object):



More information about the Pypy-commit mailing list