1. 06 Kas, 2002 1 kayıt (commit)
  2. 10 Eki, 2002 1 kayıt (commit)
  3. 29 Agu, 2002 1 kayıt (commit)
  4. 09 Agu, 2002 3 kayıt (commit)
  5. 06 Agu, 2002 1 kayıt (commit)
  6. 04 Agu, 2002 2 kayıt (commit)
  7. 02 Agu, 2002 1 kayıt (commit)
  8. 01 Agu, 2002 1 kayıt (commit)
    • Jack Jansen's avatar
      - Get _environ through the NSEnviron call in a MacOSX framework. This allows · ea0c3828
      Jack Jansen yazdı
        us to completely decouple the framework from the executable, so we
        can use a two-level namespace.
      - Do framework builds with a twolevel namespace.
      - Reorganized the code that creates the minimal framework in the build
        directory, to make it more robust against incomplete frameworks (from
        earlier aborted builds, or builds of previous Python versions).
      ea0c3828
  9. 30 Tem, 2002 1 kayıt (commit)
  10. 29 Tem, 2002 1 kayıt (commit)
    • Jason Tishler's avatar
      Patch #553702: Cygwin make install patch · c0f1e774
      Jason Tishler yazdı
      This patch fixes make install for Cygwin. Specifically,
      it reverts to the previous behavior:
      
      o install libpython$(VERSION)$(SO) in $(BINDIR)
      o install $(LDLIBRARY) in $(LIBPL)
      
      It also begins to remove Cygwin's dependency on
      $(DLLLIBRARY) which I hope to take advantage of
      when I attempt to make Cygwin as similar as possible
      to the other Unix platforms (in other patches).
      
      I tested this patch under Red Hat Linux 7.1 without
      any ill effects.
      
      BTW, I'm not the happiest using the following
      test for Cygwin:
      
      test "$(SO)" = .dll
      
      I'm willing to update the patch to use:
      
      case "$(MACHDEP)" in cygwin*
      
      instead, but IMO that will look uglier.
      c0f1e774
  11. 19 Tem, 2002 1 kayıt (commit)
  12. 17 Tem, 2002 1 kayıt (commit)
  13. 21 Haz, 2002 1 kayıt (commit)
    • Jack Jansen's avatar
      Patch #557719 by Tony Lownds, slightly massaged by me: streamline the · 0b06be7b
      Jack Jansen yazdı
      OSX framework build process. Things fixed/modified:
      - the filesystem case-sensitivity test now works for builds outside
        the source directory
      - various other fixes for building outside the source directory
      - python.app now has a target in the main Makefile
      - WASTE and AquaTk are found more automatically
      0b06be7b
  14. 11 Haz, 2002 1 kayıt (commit)
  15. 15 May, 2002 1 kayıt (commit)
    • Jason Tishler's avatar
      Patch #553678: Cygwin Makefile.pre.in vestige patch · 5cc21aee
      Jason Tishler yazdı
      This patch removes a vestige part of the Cygwin make rules
      that didn't quite make it over during the flattening of the
      Makefiles. In its current form, it creates a def file but
      incorrectly calls it libpython$(VERSION).dll.a which
      immediately gets overwritten by the next command.
      Obviously, this is useless. It appears, it was useless
      in the old nested Makefile structure too. :,)
      5cc21aee
  16. 08 May, 2002 1 kayıt (commit)
  17. 26 Nis, 2002 1 kayıt (commit)
  18. 22 Nis, 2002 1 kayıt (commit)
  19. 05 Nis, 2002 1 kayıt (commit)
  20. 03 Nis, 2002 1 kayıt (commit)
    • Guido van Rossum's avatar
      Add the 'bool' type and its values 'False' and 'True', as described in · 77f6a65e
      Guido van Rossum yazdı
      PEP 285.  Everything described in the PEP is here, and there is even
      some documentation.  I had to fix 12 unit tests; all but one of these
      were printing Boolean outcomes that changed from 0/1 to False/True.
      (The exception is test_unicode.py, which did a type(x) == type(y)
      style comparison.  I could've fixed that with a single line using
      issubtype(x, type(y)), but instead chose to be explicit about those
      places where a bool is expected.
      
      Still to do: perhaps more documentation; change standard library
      modules to return False/True from predicates.
      77f6a65e
  21. 29 Mar, 2002 1 kayıt (commit)
  22. 23 Mar, 2002 1 kayıt (commit)
  23. 28 Şub, 2002 1 kayıt (commit)
  24. 12 Şub, 2002 1 kayıt (commit)
  25. 17 Ock, 2002 1 kayıt (commit)
  26. 19 Ara, 2001 1 kayıt (commit)
  27. 06 Ara, 2001 1 kayıt (commit)
  28. 04 Ara, 2001 2 kayıt (commit)
  29. 03 Ara, 2001 1 kayıt (commit)
  30. 02 Ara, 2001 1 kayıt (commit)
  31. 24 Kas, 2001 1 kayıt (commit)
  32. 26 Eki, 2001 1 kayıt (commit)
  33. 20 Eki, 2001 1 kayıt (commit)
  34. 18 Eki, 2001 1 kayıt (commit)
    • Guido van Rossum's avatar
      SF patch #462296: Add attributes to os.stat results; by Nick Mathewson. · 98bf58f1
      Guido van Rossum yazdı
      This is a big one, touching lots of files.  Some of the platforms
      aren't tested yet.  Briefly, this changes the return value of the
      os/posix functions stat(), fstat(), statvfs(), fstatvfs(), and the
      time functions localtime(), gmtime(), and strptime() from tuples into
      pseudo-sequences.  When accessed as a sequence, they behave exactly as
      before.  But they also have attributes like st_mtime or tm_year.  The
      stat return value, moreover, has a few platform-specific attributes
      that are not available through the sequence interface (because
      everybody expects the sequence to have a fixed length, these couldn't
      be added there).  If your platform's struct stat doesn't define
      st_blksize, st_blocks or st_rdev, they won't be accessible from Python
      either.
      
      (Still missing is a documentation update.)
      98bf58f1
  35. 17 Eki, 2001 1 kayıt (commit)
  36. 05 Eki, 2001 1 kayıt (commit)