diff options
author | Skip Montanaro <skip@pobox.com> | 2001-03-06 15:26:07 (GMT) |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2001-03-06 15:26:07 (GMT) |
commit | 81e4b1c5c8307285c89952c3ee9c9f5c3d4896f3 (patch) | |
tree | 22c3de4fe1d1d21948fb2ac6afa7f31c2473e3de /Lib/os.py | |
parent | 01c6526c0ebd83f418046edcc678c9a458c45f32 (diff) | |
download | cpython-81e4b1c5c8307285c89952c3ee9c9f5c3d4896f3.zip cpython-81e4b1c5c8307285c89952c3ee9c9f5c3d4896f3.tar.gz cpython-81e4b1c5c8307285c89952c3ee9c9f5c3d4896f3.tar.bz2 |
fix typo in extending __all__ for riscos platform - closes bug 406296
Diffstat (limited to 'Lib/os.py')
-rw-r--r-- | Lib/os.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -164,7 +164,7 @@ elif 'riscos' in _names: import riscos __all__.extend(_get_exports_list(riscos)) - del ce + del riscos else: raise ImportError, 'no os specific module found' |