1. 30 May, 2015 2 kayıt (commit)
  2. 20 Kas, 2014 1 kayıt (commit)
  3. 20 Kas, 2013 1 kayıt (commit)
  4. 03 Haz, 2012 1 kayıt (commit)
  5. 22 Mar, 2012 1 kayıt (commit)
  6. 06 Eki, 2011 1 kayıt (commit)
  7. 28 Eyl, 2011 5 kayıt (commit)
  8. 08 Tem, 2011 1 kayıt (commit)
  9. 03 Ara, 2010 1 kayıt (commit)
  10. 30 Kas, 2010 1 kayıt (commit)
  11. 07 Eki, 2010 1 kayıt (commit)
    • Victor Stinner's avatar
      Create fileutils.c/.h · 4e31443c
      Victor Stinner yazdı
       * _Py_fopen() and _Py_stat() come from Python/import.c
       * (_Py)_wrealpath() comes from Python/sysmodule.c
       * _Py_char2wchar(), _Py_wchar2char() and _Py_wfopen() come from Modules/main.c
       * (_Py)_wstat(), (_Py)_wgetcwd(), _Py_wreadlink() come from Modules/getpath.c
      4e31443c
  12. 14 Agu, 2010 2 kayıt (commit)
  13. 13 Agu, 2010 2 kayıt (commit)
  14. 05 Agu, 2010 1 kayıt (commit)
  15. 19 Tem, 2010 4 kayıt (commit)
    • Stefan Krah's avatar
      Merged revisions 82969 via svnmerge from · d483a1a1
      Stefan Krah yazdı
      svn+ssh://pythondev@svn.python.org/python/branches/release27-maint
      
      ........
        r82969 | stefan.krah | 2010-07-19 15:14:01 +0200 (Mon, 19 Jul 2010) | 14 lines
      
        Issue #9036: Throughout the code base, Py_CHARMASK is used on 8-bit wide
        signed/unsigned chars or on integers directly derived from those. In all
        cases, it could be replaced by a simple cast to (unsigned char). Reasons
        for the change:
      
          a) Make the comment more explicit.
      
          b) If char is unsigned, the cast is optimized away.
      
          c) If char is unsigned, gcc emits spurious "array subscript
             has type 'char'" warnings.
      ........
      d483a1a1
    • Stefan Krah's avatar
      Issue #9036: Throughout the code base, Py_CHARMASK is used on 8-bit wide · a1775944
      Stefan Krah yazdı
      signed/unsigned chars or on integers directly derived from those. In all
      cases, it could be replaced by a simple cast to (unsigned char). Reasons
      for the change:
      
        a) Make the comment more explicit.
      
        b) If char is unsigned, the cast is optimized away.
      
        c) If char is unsigned, gcc emits spurious "array subscript
           has type 'char'" warnings.
      a1775944
    • Stefan Krah's avatar
      Merged revisions 82966 via svnmerge from · 5bf06641
      Stefan Krah yazdı
      svn+ssh://pythondev@svn.python.org/python/branches/py3k
      
      ........
        r82966 | stefan.krah | 2010-07-19 14:36:57 +0200 (Mon, 19 Jul 2010) | 13 lines
      
        Issue #9036: Throughout the code base, Py_CHARMASK is used on 8-bit wide
        signed/unsigned chars or on integers directly derived from those. In all
        cases, it could be replaced by a simple cast to (unsigned char). Reasons
        for the change:
      
          a) Make the comment more explicit.
      
          b) If char is unsigned, the cast is optimized away.
      
          c) If char is unsigned, gcc emits spurious "array subscript
             has type 'char'" warnings.
      ........
      5bf06641
    • Stefan Krah's avatar
      Issue #9036: Throughout the code base, Py_CHARMASK is used on 8-bit wide · 36d2e67d
      Stefan Krah yazdı
      signed/unsigned chars or on integers directly derived from those. In all
      cases, it could be replaced by a simple cast to (unsigned char). Reasons
      for the change:
      
        a) Make the comment more explicit.
      
        b) If char is unsigned, the cast is optimized away.
      
        c) If char is unsigned, gcc emits spurious "array subscript
           has type 'char'" warnings.
      36d2e67d
  16. 03 May, 2010 1 kayıt (commit)
  17. 18 Nis, 2010 1 kayıt (commit)
  18. 17 Nis, 2010 1 kayıt (commit)
  19. 14 Nis, 2010 1 kayıt (commit)
  20. 25 Mar, 2010 1 kayıt (commit)
  21. 24 Eki, 2009 1 kayıt (commit)
  22. 18 Eki, 2009 1 kayıt (commit)
  23. 01 Tem, 2009 1 kayıt (commit)
  24. 09 May, 2009 1 kayıt (commit)
  25. 05 May, 2009 1 kayıt (commit)
  26. 27 Nis, 2009 2 kayıt (commit)
  27. 16 Nis, 2009 1 kayıt (commit)
    • Mark Dickinson's avatar
      Issue #1580: use short float repr where possible. · b08a53a9
      Mark Dickinson yazdı
       - incorporate and adapt David Gay's dtoa and strtod
         into the Python core
       - on platforms where we can use Gay's code (almost
         all!), repr(float) is based on the shortest
         sequence of decimal digits that rounds correctly.
       - add sys.float_repr_style attribute to indicate
         whether we're using Gay's code or not
       - add autoconf magic to detect and enable SSE2
         instructions on x86/gcc
       - slight change to repr and str:  repr switches
         to exponential notation at 1e16 instead of
         1e17, str switches at 1e11 instead of 1e12
      b08a53a9
  28. 02 Nis, 2009 1 kayıt (commit)
  29. 16 Tem, 2008 1 kayıt (commit)
    • Georg Brandl's avatar
      Merged revisions 63955 via svnmerge from · fcaf910a
      Georg Brandl yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r63955 | ronald.oussoren | 2008-06-05 14:58:24 +0200 (Thu, 05 Jun 2008) | 20 lines
      
        MacOS X: Enable 4-way universal builds
      
        This patch adds a new configure argument on OSX:
                --with-universal-archs=[32-bit|64-bit|all]
      
        When used with the --enable-universalsdk option this controls which
        CPU architectures are includes in the framework. The default is 32-bit,
        meaning i386 and ppc. The most useful alternative is 'all', which includes
        all 4 CPU architectures supported by MacOS X (i386, ppc, x86_64 and ppc64).
      
        This includes limited support for the Carbon bindings in 64-bit mode as well,
        limited because (a) I haven't done extensive testing and (b) a large portion
        of the Carbon API's aren't available in 64-bit mode anyway.
      
        I've also duplicated a feature of Apple's build of python: setting the
        environment variable 'ARCHFLAGS' controls the '-arch' flags used for building
        extensions using distutils.
      ........
      fcaf910a