An error occurred fetching the project authors.
  1. 16 Aug, 2013 5 commits
  2. 15 Aug, 2013 3 commits
    • Terry Jan Reedy's avatar
      Issue #18732: Remove unused* parameter output_sep from IdleHistory.History · 1703df6c
      Terry Jan Reedy authored
      and paired splits and joins that do nothing when output_sep is its default \n.
      *It in unused in that the class in only instantiated once, with the default.
      Make a few other changes in .fetch and its test.
      1703df6c
    • Terry Jan Reedy's avatar
      Issue #18226: Fix ImportError and subsequent TypeError in 2.7 backport. · 74b3290c
      Terry Jan Reedy authored
      Running py27\PCbuild> python_d -m test.regrtest -ugui test_idle
      ignores the exceptions and gives no indication of a problem (fixed in 3.3).
      74b3290c
    • Terry Jan Reedy's avatar
      Issue #18425: Unittests for idlelib.IdleHistory. First patch by R. Jayakrishnan. · 8ce36dd7
      Terry Jan Reedy authored
      Issue #18425: Unittests for idlelib.IdleHistory. First patch by R. Jayakrishnan.
      
      Issue #18425: Unittests for idlelib.IdleHistory. First patch by R. Jayakrishnan.
      
      Issue #18425: Unittests for idlelib.IdleHistory. First patch by R. Jayakrishnan.
      Issue #18425: Unittests for idlelib.IdleHistory. First patch by R. Jayakrishnan.
      Issue #18425: Unittests for idlelib.IdleHistory. First patch by R. Jayakrishnan.
      Issue #18425: Unittests for idlelib.IdleHistory. First patch by R. Jayakrishnan.
      Issue #18425: Unittests for idlelib.IdleHistory. First patch by R. Jayakrishnan.
      Issue #18425: Unittests for idlelib.IdleHistory. First patch by R. Jayakrishnan.
      8ce36dd7
  3. 14 Aug, 2013 2 commits
  4. 13 Aug, 2013 5 commits
  5. 12 Aug, 2013 2 commits
  6. 11 Aug, 2013 1 commit
  7. 10 Aug, 2013 3 commits
  8. 08 Aug, 2013 1 commit
  9. 06 Aug, 2013 1 commit
  10. 05 Aug, 2013 2 commits
  11. 04 Aug, 2013 3 commits
  12. 03 Aug, 2013 2 commits
  13. 02 Aug, 2013 2 commits
  14. 01 Aug, 2013 4 commits
  15. 31 Jul, 2013 1 commit
  16. 30 Jul, 2013 1 commit
  17. 28 Jul, 2013 2 commits
    • Terry Jan Reedy's avatar
      Update gui section of idle test README. · aea6c115
      Terry Jan Reedy authored
      aea6c115
    • Raymond Hettinger's avatar
      Restore the data block size to 62. · 662908b5
      Raymond Hettinger authored
      The former block size traded away good fit within cache lines in
      order to gain faster division in deque_item().  However, compilers
      are getting smarter and can now replace the slow division operation
      with a fast integer multiply and right shift.  Accordingly, it makes
      sense to go back to a size that lets blocks neatly fill entire
      cache-lines.
      
      GCC-4.8 and CLANG 4.0 both compute "x // 62" with something
      roughly equivalent to "x * 9520900167075897609 >> 69".
      662908b5