1. 21 Feb, 2016 1 commit
    • Brett Cannon's avatar
      Issue #26186: Remove an invalid type check in · 558823a0
      Brett Cannon authored
      importlib.util.LazyLoader.
      
      The class was checking its argument as to whether its implementation
      of create_module() came directly from importlib.abc.Loader. The
      problem is that the classes coming from imoprtlib.machinery do not
      directly inherit from the ABC as they come from _frozen_importlib.
      Because the documentation has always said that create_module() was
      ignored, the check has simply been removed.
      558823a0
  2. 20 Feb, 2016 2 commits
  3. 19 Feb, 2016 4 commits
  4. 18 Feb, 2016 5 commits
  5. 16 Feb, 2016 1 commit
  6. 15 Feb, 2016 2 commits
  7. 14 Feb, 2016 1 commit
  8. 13 Feb, 2016 2 commits
  9. 11 Feb, 2016 2 commits
  10. 10 Feb, 2016 4 commits
  11. 08 Feb, 2016 5 commits
  12. 09 Feb, 2016 1 commit
  13. 08 Feb, 2016 1 commit
  14. 07 Feb, 2016 1 commit
  15. 08 Feb, 2016 1 commit
    • Martin Panter's avatar
      Issue #25179: Preparatory cleanup of existing docs on string formatting · d5db1479
      Martin Panter authored
      * Various sections were pointing to the section on the string.Formatter
        class, when the section on the common format string syntax is probably more
        appropriate
      * Fix references to various format() functions and methods
      * Nested replacement fields may contain conversions and format specifiers,
        and this is tested; see Issue #19729 for instance
      d5db1479
  16. 06 Feb, 2016 1 commit
  17. 04 Feb, 2016 4 commits
  18. 02 Feb, 2016 2 commits
    • Zachary Ware's avatar
      Fix typo. · 3df11b2b
      Zachary Ware authored
      Reported by Jon Tetlak on docs@
      3df11b2b
    • Serhiy Storchaka's avatar
      Issue #25945: Fixed bugs in functools.partial. · 38741285
      Serhiy Storchaka authored
      Fixed a crash when unpickle the functools.partial object with wrong state.
      Fixed a leak in failed functools.partial constructor.
      "args" and "keywords" attributes of functools.partial have now always types
      tuple and dict correspondingly.
      38741285