1. 22 Dec, 1998 3 commits
  2. 21 Dec, 1998 26 commits
  3. 19 Dec, 1998 1 commit
  4. 18 Dec, 1998 10 commits
    • Greg Ward's avatar
      Fred's sysconfig module. · 1190ee3d
      Greg Ward authored
      1190ee3d
    • Jeremy Hylton's avatar
      patches from Andrew · a37e2445
      Jeremy Hylton authored
      NOTE: There is still a bug of some sort in the behavior of zlib.  In
      at least one case, inflate returns Z_OK (which is typically
      interpreted to mean that more output space is needed) when it has
      finished inflating a buffer.  This has been reported as a bug to the
      zlib maintainers; we may need to change the Python interface.
      a37e2445
    • Guido van Rossum's avatar
      Chris H. writes: · 1924a067
      Guido van Rossum authored
      If we're going to put the PyOS_strtol() proto in intobject.h we should
      include it here or the symbol isn't exported on PowerPC.
      1924a067
    • Guido van Rossum's avatar
      Improved instructions by Chris H. · eb452321
      Guido van Rossum authored
      eb452321
    • Greg Ward's avatar
      Initial checkin of distutils source files. · ee789b96
      Greg Ward authored
      ee789b96
    • Guido van Rossum's avatar
      Sjoerd Mullender writes: · b083a9fb
      Guido van Rossum authored
      Here is my current version of xmllib.py and the documentation.  This
      version has some API changes with respect to the version currently in
      Python (also the one in 1.5.2a).
      This version supports XML namespaces.
      b083a9fb
    • Fred Drake's avatar
      When _PyString_Resize() reports failure, the variable referring to the · 6de7d0c3
      Fred Drake authored
      string we wanted to resize is set to NULL.  Don't Py_DECREF() those
      variables!  (5 places)
      6de7d0c3
    • Guido van Rossum's avatar
    • Guido van Rossum's avatar
      060f24ce
    • Guido van Rossum's avatar
      Sjoerd Mullender: · 33add0a9
      Guido van Rossum authored
      File names with "funny" characters get translated wrong by
      pathname2url (any variety).  E.g. the (Unix) file "/ufs/sjoerd/#tmp"
      gets translated into "/ufs/sjoerd/#tmp" which, when interpreted as a
      URL is file "/ufs/sjoerd/" with fragment ID "tmp".
      
      Here's an easy fix.  (An alternative fix would be to change the
      various implementations of pathname2url and url2pathname to include
      calls to quote and unquote.
      
      [The main problem is with the normal use of URLs:
      	url = url2pathname(file)
      	transmit url
      	url, tag = splittag(url)
      	urlopen(url)
      ]
      
      In addition, this patch fixes some uses of unquote:
      - the host part of URLs should be unquoted
      - the file path in the FTP URL should be unquoted before it is split
        into components.
      - because of the latter, I removed all unquoting from ftpwrapper,
        and moved it to the caller, but that is not essential
      33add0a9