1. 24 Şub, 2002 9 kayıt (commit)
    • Jack Jansen's avatar
      Backport of 1.5 thru 1.8: · 2b959a83
      Jack Jansen yazdı
      - Use full paths for Rez and DeRez, which may not be on $PATH. Fixes bug
      #509074.
      - Also install the Tools directory on "make installmacsubtree".
      - Added a note that you have to add Mac/Lib to sys.path after doing
      a "make installmacsubtree".
      - Include errors.rsrc in the Python.app resource file, so the error strings
      are available in MacOS API exceptions.
      2b959a83
    • Jack Jansen's avatar
      Backport of 1.9: · c8363d7e
      Jack Jansen yazdı
      Ugh, by all means, _do_ report exceptions somehow ;-)
      c8363d7e
    • Jack Jansen's avatar
      backport of 1.52 and 1.53: · fe48a915
      Jack Jansen yazdı
      - Added as_pathname() method to FSRef objects.
      - In MachoPython expect Unix-style pathnames for both FSSpec and FSRef
      initializers.
      fe48a915
    • Jack Jansen's avatar
      backport of 1.13: · ad48e32c
      Jack Jansen yazdı
      Fixed to work under MachoPython, doing the expected unpacking for applesingle
      files.
      ad48e32c
    • Jack Jansen's avatar
      backport of 1.13: · d7d87ee3
      Jack Jansen yazdı
      Get rid of fsspec type initializer, it wasn't used anyway.
      d7d87ee3
    • Jack Jansen's avatar
      Backport of 1.3: · 636c6fa1
      Jack Jansen yazdı
      Rename the routine to start the target running _start(), with a compatibility
      routine start() calling it.
      
      Some suites declare an event start(), which obscures this method, which
      causes the class initializer to fail when called with start=1.
      
      Based on bug report and fix suggestion by Jacob Kaplan-Moss.
      636c6fa1
    • Jack Jansen's avatar
      Backport of 1.3: · 87d9d230
      Jack Jansen yazdı
      Added support for unicode strings (utxt).
      87d9d230
    • Jack Jansen's avatar
      Backport of 1.47, 1.48 and 1.49: · 763c6645
      Jack Jansen yazdı
      - Added minimal support for floating windows.
      - Changes by Donovan Preston (and a few minor ones by me) to make IDE run under
      MachoPython. Mainly making sure we don't call routines that don't exist.
      - Don't barf when an AppleEvent was not handled. It's ok to ignore.
      763c6645
    • Jack Jansen's avatar
      Backport of 1.9 and 1.10: · 701debfb
      Jack Jansen yazdı
      Rewritten, clarified, corrected and cleaned up by Michael J. Barber.
      Some modifications and clarifications (by me) to Michael's mods.
      701debfb
  2. 23 Şub, 2002 2 kayıt (commit)
    • Michael W. Hudson's avatar
      Backport jackjansen's checkin of revision 2.37: · d17700cc
      Michael W. Hudson yazdı
      Workaround for what is probably a problem in Apple's gcc: <pthread.h> fails
      on a function pointer formal argument called "destructor", which is typedeffed
      as a different function pointer type in object.h.
      d17700cc
    • Michael W. Hudson's avatar
      backport tim_one's checkin of · 06efb779
      Michael W. Hudson yazdı
          revision 1.101 of libfuncs.tex
      
      SF bug #501591:  dir() doc is old
      Bugfix candidate.
      
      + Updated dir() description to match actual 2.2 behavior.
      
      + Replaced the dir(sys) example with dir(struct), because the former
        was way out of date and is bound to change frequently, while the
        latter is stable.
      
      + Added a note cautioning that dir() is supplied primarily for
        convenience at an interactive prompt (hoping to discourage its
        use as the foundation of introspective code outside the core).
      06efb779
  3. 22 Şub, 2002 13 kayıt (commit)
    • Greg Ward's avatar
      Merge trunk. · 952f138a
      Greg Ward yazdı
      952f138a
    • Fred Drake's avatar
      Typo: thsi -> this. Closes SF bug #521450. · e5830474
      Fred Drake yazdı
      e5830474
    • Michael W. Hudson's avatar
      Backport theller's check-in of revision 1.45: · dcaab1fb
      Michael W. Hudson yazdı
      Make it 1.5.2 compatible again.
      
      (I'm not sure how having symlinks around the repository interacts with
      branches -- I'm going to tread carefully in here)
      dcaab1fb
    • Michael W. Hudson's avatar
      backport guido's checkin of revision 1.139: · 45c44fbd
      Michael W. Hudson yazdı
      Updates related to Modules/Setup and setup.py.  This addresses SF bug
      #512871 (Jon Ribbens): Installation instructions are wrong.
      
      Bugfix candidate.
      45c44fbd
    • Michael W. Hudson's avatar
      Fix the problem reported in · 6c7078b5
      Michael W. Hudson yazdı
      [ #495401 ] Build troubles: --with-pymalloc
      
      in a slightly different manner to the trunk, as discussed on python-dev.
      6c7078b5
    • Michael W. Hudson's avatar
      backport loewis' checkin of · 62f07340
      Michael W. Hudson yazdı
          revision 2.127 of typeobject.c
      
      Allow __doc__ to be of arbitrary type. Patch by James Henstridge,
      fixes #504343. 2.2.1 candidate.
      62f07340
    • Michael W. Hudson's avatar
      backport tim_one's checkin of · a9793cb9
      Michael W. Hudson yazdı
          revision 1.3 of reindent.py
      
      SF bug #497839:  reindent chokes on empty first lines.
      Reindenter.run():  copy over initial all-whitespace lines (if any, and
      after normalizing to remove trailing blanks and tabs).
      Bugfix candidate.
      a9793cb9
    • Michael W. Hudson's avatar
      backport tim_one's checkin of · bccffe22
      Michael W. Hudson yazdı
          revision 1.10 of test_thread.py
          revision 1.5 of test_threaded_import.py
      
      SF bug #516372:  test_thread: unhandled exc. in thread
      Fix exit races in test_thread.py and test_threaded_import.py.
      I suspect the bug is provokable only under Linux (where child threads
      seem to get lots of cycles before they get killed after the main thread
      exits), or on multi-processor machines running other OSes.
      Bugfix candidate.
      bccffe22
    • Michael W. Hudson's avatar
      backport gward's checkin of · c22d4592
      Michael W. Hudson yazdı
          revision 1.25 of urllib2.py
      
      Fix bug #511786 (2.2.1 candidate): ensure that custom-supplied headers
      are preserved for redirected requests.
      c22d4592
    • Michael W. Hudson's avatar
      backport gvanrossum's checkin of · 03474c5c
      Michael W. Hudson yazdı
          revision 2.54 of complexobject.c
      
      Declare real and imag as read-only attributes.
      
      This fixes SF bug #514858 (Gregory Smith): complex not entirely
      immutable
      
      2.2.1 Bugfix candidate!
      03474c5c
    • Michael W. Hudson's avatar
      backport akuchling's checkin of · 35bbe566
      Michael W. Hudson yazdı
          revision 1.12 of file_util.py
      
      [Bug #220993; may also fix bug #479469] Fix flakiness when old
        installations are present, by always unlinking the destination file
        before copying to it.  Without the unlink(), the copied file remains
        owned by its previous UID, causing the subsequent chmod() to fail.
      
      Bugfix candidate, though it may cause changes on platforms where
        file ownership behaves differently.
      35bbe566
    • Michael W. Hudson's avatar
      backport gvanrossum's checkin of · fffbde74
      Michael W. Hudson yazdı
          revision 1.21 of CGIHTTPServer.py
      
      date: 2002/02/01 16:27:59;  author: gvanrossum;  state: Exp;  lines: +18 -4
      Wesley Chun's SF patch 511380: add CGIHTTPServer error supt for Win32
      
      This uses os.popen3 (if it exists) to ensure that errors from a
      non-Python CGI script are logged.
      
      Bugfix candidate.
      fffbde74
    • Michael W. Hudson's avatar
      backport akuchling's checkin of · 94e50003
      Michael W. Hudson yazdı
          revision 1.11 of install_scripts.py
      
      Restrict the mode to the lowest four octal positions; higher positions
         contain the type of the file (regular file, socket, link, &c.).
         This means that install_scripts will now print
         "changing mode of <file> to 775" instead of "... to 100775".
      
      2.2 bugfix candidate, I suppose, though this isn't actually fixing a bug.
      
      This patch was applied by an alarmingly automated system -- I hope it
      worked...
      94e50003
  4. 20 Şub, 2002 1 kayıt (commit)
  5. 19 Şub, 2002 4 kayıt (commit)
  6. 16 Şub, 2002 2 kayıt (commit)
  7. 15 Şub, 2002 3 kayıt (commit)
  8. 14 Şub, 2002 1 kayıt (commit)
  9. 08 Şub, 2002 4 kayıt (commit)
  10. 06 Şub, 2002 1 kayıt (commit)