projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Change GetC to return an int so that it can return wxEOF on error.
[wxWidgets.git]
/
wxPython
/
src
/
__init__.py
diff --git
a/wxPython/src/__init__.py
b/wxPython/src/__init__.py
index 9c45a5b1215be742134f86c83eab7640dd470bc3..53a578b4adeee86042ef9c238d019b3751d59e29 100644
(file)
--- a/
wxPython/src/__init__.py
+++ b/
wxPython/src/__init__.py
@@
-52,8
+52,7
@@
if 'wxMSW' in PlatformInfo:
import wx._core
__docfilter__ = wx._core.__DocFilter(globals())
-__all__ += [name for name in dir(wx._core)
- if not (name.startswith('__') and name.endswith('__'))]
+__all__ += [name for name in dir(wx._core) if not name.startswith('_')]