1. 29 Haz, 1999 13 kayıt (commit)
  2. 27 Haz, 1999 4 kayıt (commit)
  3. 25 Haz, 1999 18 kayıt (commit)
  4. 24 Haz, 1999 2 kayıt (commit)
    • Guido van Rossum's avatar
      Clarify the example by explicitly importing the fcntl module -- this · cf6905f9
      Guido van Rossum yazdı
      avoid being fooled into thinking that fcntl and FCNTL are the same
      thing -- they aren't!  (fcntl is the extension, FCNTL.py is h2py
      output that defines all the constants).
      
      (XXX The example is still weird -- I think there's a more portable way
      to do locking now.  That's for someone else to fix...)
      cf6905f9
    • Guido van Rossum's avatar
      Sjoerd Mullender writes: · 336a201d
      Guido van Rossum yazdı
      Urllib makes the URL of the opened file available through the geturl
      method of the returned object.  For local files, this consists of
      file: plus the name of the file.  This results in an invalid URL if
      the file name was relative.  This patch fixes this so that the
      returned URL is just a relative URL in that case.  When the file name
      is absolute, the URL returned is of the form file:///absolute/path.
      
      [I guess that a URL of the form "file:foo.html" is illegal...  GvR]
      336a201d
  5. 23 Haz, 1999 3 kayıt (commit)
    • Guido van Rossum's avatar
      Small patch by Tim Peters - it was using self.maxlist when it should · ff3a278d
      Guido van Rossum yazdı
      be using self.maxdict.
      ff3a278d
    • Guido van Rossum's avatar
      Simplified version of a patch by Chih-Hao Huang, who wrote: · ce769519
      Guido van Rossum yazdı
      """
      When there are additional Setup files, specified by -e option of freeze,
      checkextenstions.py assumes that *.o, *.a, -Lpath, and -Rpath are all
      relative to where the Setup file is. select() inserts the path to the
      Setup file to make them absolute. However, the assumption is not true.
      There are cases that absolute paths are specified for them. The inserted
      prefix, by select(), results in error.
      
      The following fix check for absolute paths. The assumption is: an
      absolute path begins with either '/' or '$'. In the latter case, it is
      from the environmental variable. (Variables defined locally in the Setup
      file have already been handled by expandvars())
      """
      
      My version of the patch has been verified by Charles Waldman (a
      colleague of Chih-Hao).
      ce769519
    • Fred Drake's avatar
      Removed tty module entry. · 7c242643
      Fred Drake yazdı
      7c242643