1. 07 Ara, 2018 1 kayıt (commit)
  2. 15 Kas, 2018 1 kayıt (commit)
  3. 26 Haz, 2018 1 kayıt (commit)
  4. 21 Haz, 2018 2 kayıt (commit)
  5. 24 Haz, 2017 1 kayıt (commit)
  6. 16 Ara, 2016 1 kayıt (commit)
  7. 31 Agu, 2016 1 kayıt (commit)
  8. 12 Haz, 2016 1 kayıt (commit)
  9. 11 Haz, 2016 1 kayıt (commit)
  10. 10 Haz, 2016 1 kayıt (commit)
  11. 08 Haz, 2016 2 kayıt (commit)
  12. 06 Haz, 2016 1 kayıt (commit)
  13. 04 Haz, 2016 1 kayıt (commit)
  14. 28 May, 2016 1 kayıt (commit)
    • Terry Jan Reedy's avatar
      Issue #24225: Within idlelib files, update idlelib module names. · 6fa5bdc6
      Terry Jan Reedy yazdı
      This follows the previous patch that changed idlelib file names.
      Class names that matched old module names are not changed.
      Change idlelib imports in turtledemo.__main__.
      
      Exception: config-extensions.def.  Previously, extension section
      names, file names, and class names had to match.  Changing section
      names would create cross-version conflicts in config-extensions.cfg
      (user customizations).  Instead map old names to new file names
      at point of import in editor.EditorWindow.load_extension.
      
      Patch extensively tested with test_idle, idle_test.htest.py, a custom
      import-all test, running IDLE in a console to catch messages,
      and testing each menu item.  Based on a patch by Al Sweigart.
      6fa5bdc6
  15. 22 May, 2016 1 kayıt (commit)
  16. 24 Nis, 2016 1 kayıt (commit)
  17. 21 Eyl, 2015 1 kayıt (commit)
  18. 20 Eyl, 2015 1 kayıt (commit)
    • Terry Jan Reedy's avatar
      Issue #16893: Replace help.txt with idle.html for Idle doc display. · 5d46ab12
      Terry Jan Reedy yazdı
      The new idlelib/idle.html is copied from Doc/build/html/idle.html.
      It looks better than help.txt and will better document Idle as released.
      The tkinter html viewer that works for this file was written by Rose Roseman.
      The new code is in idlelib/help.py, a new file for help menu classes.
      The now unused EditorWindow.HelpDialog class and helt.txt file are deprecated.
      5d46ab12
  19. 30 Tem, 2015 1 kayıt (commit)
  20. 16 May, 2015 1 kayıt (commit)
  21. 23 Eki, 2014 1 kayıt (commit)
  22. 28 Mar, 2014 1 kayıt (commit)
  23. 17 Agu, 2012 1 kayıt (commit)
    • Ned Deily's avatar
      Issue #15678: Fix menu customization for IDLE started from OS X · 6aaa03a9
      Ned Deily yazdı
      command lines.  It was broken as a side effect of the changes to
      pythonw.c in b79d276041a8 for #15307.  Since sys.executable no
      longer includes 'Python.app' in the path name, test for a
      framework build instead.  This should give the previous behavior
      in nearly all cases.  Whether the previous behavior is sensible
      is left as an issue for later releases.  IDLE.app behavior was
      not affected as it does its own manipulation of sys.executable.
      6aaa03a9
  24. 30 Tem, 2012 2 kayıt (commit)
  25. 16 Mar, 2011 2 kayıt (commit)
  26. 30 Ock, 2011 1 kayıt (commit)
  27. 18 Ock, 2011 1 kayıt (commit)
  28. 15 Ock, 2011 1 kayıt (commit)
  29. 19 Ara, 2010 1 kayıt (commit)
  30. 07 Ara, 2010 3 kayıt (commit)
  31. 02 Agu, 2010 1 kayıt (commit)
    • Ezio Melotti's avatar
      Merged revisions 79576-79578 via svnmerge from · 4c6daf10
      Ezio Melotti yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r79576 | florent.xicluna | 2010-04-02 10:24:52 +0300 (Fri, 02 Apr 2010) | 2 lines
      
        #7092: Fix additional "-3" warnings in the idlelib package, and convert to absolute imports.
      ........
        r79577 | florent.xicluna | 2010-04-02 11:15:26 +0300 (Fri, 02 Apr 2010) | 2 lines
      
        #7092: Drop the cmp argument.
      ........
        r79578 | florent.xicluna | 2010-04-02 11:30:21 +0300 (Fri, 02 Apr 2010) | 2 lines
      
        #7092: silence some py3k warnings
      ........
      4c6daf10
  32. 02 Nis, 2010 1 kayıt (commit)
  33. 24 Ara, 2009 2 kayıt (commit)
    • Ronald Oussoren's avatar
      Merged revisions 77031 via svnmerge from · 6f6c5624
      Ronald Oussoren yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r77031 | ronald.oussoren | 2009-12-24 14:30:58 +0100 (Thu, 24 Dec 2009) | 15 lines
      
        Issue #6834: replace the implementation for the 'python' and 'pythonw' executables on OSX.
      
        The previous implementation used execv(2) to run the real interpreter, which means that
        you cannot use the arch(1) tool to select the architecture you want to use for a
        universal build because that only affects the python/pythonw wrapper and not the actual
        interpreter.
      
        The new version uses posix_spawnv with a number of OSX-specific options that ensure that
        the real interpreter is started using the same CPU architecture as the wrapper, and that
        means that 'arch -ppc python' now actually works.
      
        I've also changed the way that the wrapper looks for the framework: it is now linked to
        the framework rather than hardcoding the framework path. This should make it easier to
        provide pythonw support in tools like virtualenv.
      ........
      6f6c5624
    • Ronald Oussoren's avatar
      Issue #6834: replace the implementation for the 'python' and 'pythonw' executables on OSX. · 92919a66
      Ronald Oussoren yazdı
      The previous implementation used execv(2) to run the real interpreter, which means that
      you cannot use the arch(1) tool to select the architecture you want to use for a
      universal build because that only affects the python/pythonw wrapper and not the actual
      interpreter.
      
      The new version uses posix_spawnv with a number of OSX-specific options that ensure that
      the real interpreter is started using the same CPU architecture as the wrapper, and that
      means that 'arch -ppc python' now actually works.
      
      I've also changed the way that the wrapper looks for the framework: it is now linked to
      the framework rather than hardcoding the framework path. This should make it easier to
      provide pythonw support in tools like virtualenv.
      92919a66