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. · 144e81a6
      Greg Ward authored
      144e81a6
    • Jeremy Hylton's avatar
      patches from Andrew · bf0ba43b
      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.
      bf0ba43b
    • Guido van Rossum's avatar
      Chris H. writes: · 4e395542
      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.
      4e395542
    • Guido van Rossum's avatar
      Improved instructions by Chris H. · 54e630ed
      Guido van Rossum authored
      54e630ed
    • Greg Ward's avatar
      Initial checkin of distutils source files. · 42eaf38b
      Greg Ward authored
      42eaf38b
    • Guido van Rossum's avatar
      Sjoerd Mullender writes: · d39acef0
      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.
      d39acef0
    • Fred Drake's avatar
      When _PyString_Resize() reports failure, the variable referring to the · 43376bc9
      Fred Drake authored
      string we wanted to resize is set to NULL.  Don't Py_DECREF() those
      variables!  (5 places)
      43376bc9
    • Guido van Rossum's avatar
    • Guido van Rossum's avatar
      a3f5e805
    • Guido van Rossum's avatar
      Sjoerd Mullender: · cdd0c1a8
      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
      cdd0c1a8