1. 24 Mar, 2017 5 kayıt (commit)
  2. 23 Mar, 2017 5 kayıt (commit)
  3. 22 Mar, 2017 2 kayıt (commit)
  4. 21 Mar, 2017 5 kayıt (commit)
  5. 20 Mar, 2017 4 kayıt (commit)
  6. 19 Mar, 2017 11 kayıt (commit)
  7. 18 Mar, 2017 1 kayıt (commit)
  8. 17 Mar, 2017 5 kayıt (commit)
  9. 16 Mar, 2017 1 kayıt (commit)
  10. 15 Mar, 2017 1 kayıt (commit)
    • Nate's avatar
      bpo-29581: Make ABCMeta.__new__ pass **kwargs to type.__new__ (#527) · bd583ef9
      Nate yazdı
      Many metaclasses in the standard library don't play nice with
      __init_subclass__. This bug makes ABCMeta in particular with
      __init_subclass__, which is an 80/20 solution for me personally.
      AFAICT, a general solution to this problem requires updating all
      metaclasses in the standard library to make sure they pass **kwargs to
      type.__new__, whereas this PR only fixes ABCMeta. For context, see
      https://bugs.python.org/issue29581.
      
      * added a test combining ABCMeta and __init_subclass__
      * Added NEWS item
      bd583ef9