Skip to content

Commit 1c48298

Browse files
4B796C65@gmail.com4B796C65@gmail.com
authored andcommitted
1 parent f6e7fe0 commit 1c48298

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tdl/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -690,5 +690,5 @@ def forceResolution(width, height):
690690
"""
691691
_lib.TCOD_sys_force_fullscreen_resolution(width, height)
692692

693-
__all__ = [var for var in locals().keys() if var[0] != '_' and var not in ['sys', 'os', 'ctypes', 'array', 'weakref']]
694-
693+
__all__ = [_var for _var in locals().keys() if _var[0] != '_' and _var not in ['sys', 'os', 'ctypes', 'array', 'weakref']]
694+
__all__ += ['_MetaConsole'] # keep this object public to show the documentation in epydoc

tdl/event.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,4 +247,4 @@ def isWindowClosed():
247247
"""
248248
return _lib.TCOD_console_is_window_closed()
249249

250-
__all__ = [var for var in locals().keys() if var[0] != '_' and var not in ['time', 'ctypes']]
250+
__all__ = [_var for _var in locals().keys() if _var[0] != '_' and _var not in ['time', 'ctypes']]

0 commit comments

Comments
 (0)