]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
Cleanup patches from Greg Stein:
authorGuido van Rossum <guido@python.org>
Wed, 22 Dec 1999 14:09:35 +0000 (14:09 +0000)
committerGuido van Rossum <guido@python.org>
Wed, 22 Dec 1999 14:09:35 +0000 (14:09 +0000)
commit96a8fb7e99aa8d612473a1dd87e4c1deb8408898
tree0fb56af511a85378667bf868ec96cc8335615dca
parent6a90b5e4d0503ce56217795ff7c35a901e4f85a2
Cleanup patches from Greg Stein:

* in import.c, #ifdef out references to dynamic loading based on
  HAVE_DYNAMIC_LOADING

* clean out the platform-specific crud from importdl.c.
  [ maybe fold this function into import.c and drop the importdl.c file? Greg.]

* change GetDynLoadFunc's "funcname" parameter to "shortname". change
  "name" to "fqname" for clarification.

* each GetDynLoadFunc now creates its own funcname value.

  WARNING: as I mentioned previously, we may run into an issue with a
  missing "_" on some platforms. Testing will show this pretty quickly,
  however.

* move pathname munging into dynload_shlib.c
Python/dynload_aix.c
Python/dynload_beos.c
Python/dynload_dl.c
Python/dynload_hpux.c
Python/dynload_mac.c
Python/dynload_next.c
Python/dynload_os2.c
Python/dynload_shlib.c
Python/dynload_win.c
Python/import.c
Python/importdl.c