1. 28 Feb, 2002 1 commit
  2. 27 Feb, 2002 1 commit
  3. 26 Feb, 2002 6 commits
  4. 25 Feb, 2002 6 commits
  5. 24 Feb, 2002 4 commits
  6. 23 Feb, 2002 5 commits
  7. 22 Feb, 2002 4 commits
  8. 20 Feb, 2002 2 commits
    • Thomas Heller's avatar
      First version which runs an install-script (specified by the · d2d58e04
      Thomas Heller authored
      --install-script ... command line option to bdist_wininst) at the end
      of the installation and at the start of deinstallation.  Output
      (stdout, stderr) of the script (if any) is displayed in the last
      screen at installation, or in a simple message box at deinstallation.
      
      sys.argv[1] for the script will contain '-install' at installation
      time or '-remove' at deinstallation time.
      
      The installation script runs in an environment (embedded by the
      bdist_wininst runtime) where an additional function is available as
      builtin:
      
      create_shortcut(path, description, filename,
      	        [arguments[, workdir[, iconpath, iconindex]]])
      
      Recreated this file after source changes.
      d2d58e04
    • Fred Drake's avatar
      Correct the refcount information for the PyWeakref_GetObject() function. · 8371e840
      Fred Drake authored
      This closes SF bug #520087.
      8371e840
  9. 19 Feb, 2002 3 commits
  10. 18 Feb, 2002 3 commits
  11. 17 Feb, 2002 5 commits
    • Neil Schemenauer's avatar
      Move some opcodes to top of big eval_frame switch statement. Skip · 6354386d
      Neil Schemenauer authored
      things_to_do block for a few common opcodes that don't do any real
      work.  Closes SF patch #512256.
      6354386d
    • Tim Peters's avatar
      SF bug #497839: reindent chokes on empty first lines. · 54e5b89d
      Tim Peters authored
      Reindenter.run():  copy over initial all-whitespace lines (if any, and
      after normalizing to remove trailing blanks and tabs).
      Bugfix candidate.
      54e5b89d
    • Andrew MacIntyre's avatar
      Create and populate OS/2 EMX port build directory: · 41d97d67
      Andrew MacIntyre authored
        PC/os2emx/
          Makefile
          README.os2emx
          config.c
          dlfcn.c            // libdl emulation code for loadable extensions
          dlfcn.h
          dllentry.c         // DLL initialisation routine for Python DLL
          getpath.c
          pyconfig.h
          python23.def       // Python DLL symbol export definitions
          pythonpm.c         // console-less PM interpreter wrapper
      41d97d67
    • Tim Peters's avatar
      Repair so that importing socket doesn't blow up on platforms that lack · 18e6778b
      Tim Peters authored
      SSL support.  test_socket.py passes again on Windows.
      
      Added an XXX about adding _ssl exports to the __all__ list (it doesn't
      appear to be doing anything about that now, but since I don't have SSL
      on this box I can't really tell).
      18e6778b
    • Tim Peters's avatar
      Moved the declaration of PySocketSock_Type from socketmodule.h to · 643a7fc6
      Tim Peters authored
      socketmodule.c.  No code outside of the .c file references it, so it
      doesn't belong the .h file (at least not yet ...), and declaring it
      an imported symbol in the .h file can't be made to work on Windows (it's
      a cross-DLL symbol then) without substantial code rewriting.  Also
      repaired the comment that goes along with the decl, to stop referring
      to names and functions that haven't existed for 7 years <wink>.
      
      socketmodule.c compiles cleanly on Windows again.  The test_socket dies
      at once, though (later).
      643a7fc6