From 13962fcc11b935ce802aa6ed8250385f1576c254 Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Mon, 18 Aug 2008 01:45:29 +0000 Subject: [PATCH] Partially revert r65795 by undoing change to 'os'. --- Lib/os.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/os.py b/Lib/os.py index 19a045a01d8..2fdf6688a94 100644 --- a/Lib/os.py +++ b/Lib/os.py @@ -27,7 +27,7 @@ import sys, errno _names = sys.builtin_module_names # Note: more names are added to __all__ later. -__all__ = ["altsep", "curdir", "pardir", "sep", "extsep", "pathsep", "linesep", +__all__ = ["altsep", "curdir", "pardir", "sep", "pathsep", "linesep", "defpath", "name", "path", "devnull", "SEEK_SET", "SEEK_CUR", "SEEK_END"]