diff options
author | Barry Warsaw <barry@python.org> | 2001-12-17 15:40:24 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2001-12-17 15:40:24 (GMT) |
commit | 6e1c576a4e02595994a06993359bb4ff55ff586f (patch) | |
tree | 83b0efe18e9662c4abb0e881caec37b39dbcf12a | |
parent | 086f7c389063ad05981d721d9dc3d3dad85ee757 (diff) | |
download | cpython-6e1c576a4e02595994a06993359bb4ff55ff586f.zip cpython-6e1c576a4e02595994a06993359bb4ff55ff586f.tar.gz cpython-6e1c576a4e02595994a06993359bb4ff55ff586f.tar.bz2 |
Get rid of the stupid backslash in front of the column zero open
paren. This was there to worm around a stupid XEmacs bug, but since I
can't tickle the bug in newer XEmacsen (just tried w/21.4.5) it's
possible the problem has been fixed. We shouldn't have to be working
around editor bugs anyway.
If it crops up again, I'll report it (again) to the XEmacs crowd.
-rw-r--r-- | Lib/site.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/site.py b/Lib/site.py index e27174e..6b6b3ca 100644 --- a/Lib/site.py +++ b/Lib/site.py @@ -14,7 +14,7 @@ This will append site-specific paths to to the module search path. On Unix, it starts with sys.prefix and sys.exec_prefix (if different) and appends lib/python<version>/site-packages as well as lib/site-python. On other platforms (mainly Mac and Windows), it uses just sys.prefix -\(and sys.exec_prefix, if different, but this is unlikely). The +(and sys.exec_prefix, if different, but this is unlikely). The resulting directories, if they exist, are appended to sys.path, and also inspected for path configuration files. |