diff options
author | Guido van Rossum <guido@python.org> | 2003-02-19 15:25:10 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2003-02-19 15:25:10 +0000 |
commit | 9ac6d960b7a3a3bf31b263c9c0c0ec96957e033d (patch) | |
tree | 083695dd33d2e47b20af19d26116afbb18b7f501 /pyconfig.h.in | |
parent | 72a4d0f553ac71bbfc9497c3219062e3aa06a19d (diff) | |
download | cpython-9ac6d960b7a3a3bf31b263c9c0c0ec96957e033d.tar.gz |
- sys.path[0] (the directory from which the script is loaded) is now
turned into an absolute pathname, unless it is the empty string.
(SF patch #664376, by Skip Montanaro.)
Diffstat (limited to 'pyconfig.h.in')
-rw-r--r-- | pyconfig.h.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pyconfig.h.in b/pyconfig.h.in index c1697975bf..e2dd4d28ec 100644 --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -342,6 +342,9 @@ /* Define to 1 if you have the `readlink' function. */ #undef HAVE_READLINK +/* Define to 1 if you have the `realpath' function. */ +#undef HAVE_REALPATH + /* Define if you have readline 2.2 */ #undef HAVE_RL_COMPLETION_APPEND_CHARACTER |