1. 03 May, 2015 1 kayıt (commit)
  2. 18 Eyl, 2014 1 kayıt (commit)
  3. 07 Kas, 2013 1 kayıt (commit)
  4. 06 Kas, 2013 1 kayıt (commit)
  5. 31 Eki, 2013 3 kayıt (commit)
  6. 29 Eki, 2013 2 kayıt (commit)
  7. 28 Eki, 2013 1 kayıt (commit)
  8. 26 Agu, 2013 1 kayıt (commit)
  9. 15 Tem, 2013 1 kayıt (commit)
  10. 08 May, 2013 1 kayıt (commit)
  11. 18 Ock, 2012 1 kayıt (commit)
  12. 12 Ock, 2012 1 kayıt (commit)
  13. 09 Ara, 2011 1 kayıt (commit)
  14. 21 Kas, 2011 1 kayıt (commit)
  15. 07 Kas, 2011 1 kayıt (commit)
  16. 14 Eki, 2011 2 kayıt (commit)
  17. 10 Eki, 2011 1 kayıt (commit)
  18. 09 Eki, 2011 1 kayıt (commit)
  19. 06 Eki, 2011 1 kayıt (commit)
  20. 28 Eyl, 2011 1 kayıt (commit)
  21. 18 Tem, 2011 1 kayıt (commit)
  22. 05 Tem, 2011 1 kayıt (commit)
  23. 04 Tem, 2011 3 kayıt (commit)
  24. 05 Tem, 2011 1 kayıt (commit)
  25. 04 Tem, 2011 2 kayıt (commit)
  26. 15 Mar, 2011 2 kayıt (commit)
  27. 27 Ara, 2010 1 kayıt (commit)
  28. 24 Eki, 2010 1 kayıt (commit)
  29. 04 Eyl, 2010 1 kayıt (commit)
    • Brett Cannon's avatar
      _warnings exposed two variables with the name 'default_action' and · ef0e6c3b
      Brett Cannon yazdı
      'once_registry'. This is bad as the warnings module had variables named
      'defaultaction' and 'onceregistry' which are what people should be looking at
      (technically those variables shouldn't be mucked with as they are undocumented,
      but we all know better than to believe that isn't happening). So the variables
      from _warnings have been renamed to come off as private and to avoid confusion
      over what variable should be used.
      
      Closes issue #9766. Thanks to Antoine Pitrou for the discovery.
      ef0e6c3b
  30. 13 Agu, 2010 1 kayıt (commit)
  31. 08 Agu, 2010 1 kayıt (commit)
    • Victor Stinner's avatar
      Issue #9425: fix setup_context() for non-ascii filenames · 2e5f1178
      Victor Stinner yazdı
      setup_context() replaces .pyc or .pyo filename suffix by .py, but it
      didn't work if the filename contains a non-ascii character because the
      function used the wrong unit for the length (number of characters
      instead of the number of bytes).
      
      With this patch, it uses unicode filenames instead of bytes filenames,
      to fix the bug and to be fully unicode compliant.
      2e5f1178
  32. 28 Haz, 2010 1 kayıt (commit)
    • Benjamin Peterson's avatar
      Merged revisions 77402,77505,77510 via svnmerge from · 7ab4b8d3
      Benjamin Peterson yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r77402 | brett.cannon | 2010-01-09 20:56:19 -0600 (Sat, 09 Jan 2010) | 12 lines
      
        DeprecationWarning is now silent by default.
      
        This was originally suggested by Guido, discussed on the stdlib-sig mailing
        list, and given the OK by Guido directly to me. What this change essentially
        means is that Python has taken a policy of silencing warnings that are only
        of interest to developers by default. This should prevent users from seeing
        warnings which are triggered by an application being run against a new
        interpreter before the app developer has a chance to update their code.
      
        Closes issue #7319. Thanks to Antoine Pitrou, Ezio Melotti, and Brian Curtin
        for helping with the issue.
      ........
        r77505 | brett.cannon | 2010-01-14 14:00:28 -0600 (Thu, 14 Jan 2010) | 7 lines
      
        The silencing of DeprecationWarning was not taking -3 into consideration. Since
        Py3K warnings are DeprecationWarning by default this was causing -3 to
        essentially be a no-op. Now DeprecationWarning is only silenced if -3 is not
        used.
      
        Closes issue #7700. Thanks Ezio Melotti and Florent Xicluna for patch help.
      ........
        r77510 | brett.cannon | 2010-01-14 19:31:45 -0600 (Thu, 14 Jan 2010) | 1 line
      
        Remove C++/C99-style comments.
      ........
      7ab4b8d3