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 | 162e38c6a312aa3e9c353419301087a4620c513c (patch) | |
tree | 7cbea919a90b99c00446bfa35905821b8dc7ee44 /pyconfig.h.in | |
parent | 80be59b275dfd62545c69ca377bae02c02648839 (diff) | |
download | cpython-git-162e38c6a312aa3e9c353419301087a4620c513c.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 |