Style edit (mostly), use """ for docstrings (not ''').

Should also fix the broken py ops tips...
This commit is contained in:
2012-07-03 09:02:41 +00:00
parent a0a4c54710
commit 63810ffcef
20 changed files with 102 additions and 100 deletions

View File

@@ -48,14 +48,14 @@ def replace_help(namespace):
def get_console(console_id):
'''
"""
helper function for console operators
currently each text data block gets its own
console - code.InteractiveConsole()
...which is stored in this function.
console_id can be any hashable type
'''
"""
from code import InteractiveConsole
consoles = getattr(get_console, "consoles", None)