1. 06 Agu, 2018 1 kayıt (commit)
  2. 02 Haz, 2018 1 kayıt (commit)
  3. 20 May, 2018 2 kayıt (commit)
  4. 08 May, 2018 1 kayıt (commit)
  5. 10 Mar, 2018 2 kayıt (commit)
  6. 13 Şub, 2018 1 kayıt (commit)
  7. 05 Şub, 2018 1 kayıt (commit)
  8. 27 Ock, 2018 1 kayıt (commit)
  9. 19 Ara, 2017 1 kayıt (commit)
  10. 14 Ara, 2017 1 kayıt (commit)
  11. 06 Eki, 2017 1 kayıt (commit)
  12. 13 Eyl, 2017 1 kayıt (commit)
  13. 08 Eyl, 2017 1 kayıt (commit)
    • Nick Coghlan's avatar
      bpo-31344: Per-frame control of trace events (GH-3417) · 5a851670
      Nick Coghlan yazdı
      f_trace_lines: enable/disable line trace events
      f_trace_opcodes: enable/disable opcode trace events
      
      These are intended primarily for testing of the interpreter
      itself, as they make it much easier to emulate signals
      arriving at unfortunate times.
      5a851670
  14. 08 Haz, 2017 1 kayıt (commit)
  15. 26 May, 2017 1 kayıt (commit)
  16. 15 May, 2017 1 kayıt (commit)
    • csabella's avatar
      bpo-30354: Update data model documentation for super() (GH-1561) · 12b1c180
      csabella yazdı
      The data model section of the language reference was written well
      before the zero-argument form of super() was added.
      
      To avoid giving the impression that they're doing something
      unusual, this updates the description of `__new__` and `__init__`
      to use the zero-argument form.
      
      Patch by Cheryl Sabella.
      12b1c180
  17. 13 May, 2017 1 kayıt (commit)
  18. 01 May, 2017 1 kayıt (commit)
  19. 26 Nis, 2017 1 kayıt (commit)
    • csabella's avatar
      bpo-30052: Link `bytes` & `bytearray` to stdtypes not functions (GH-1271) · c6db4811
      csabella yazdı
      Builtin container types have two potential link targets in the docs:
      
      - their entry in the list of builtin callables
      - their type documentation
      
      This change brings `bytes` and `bytearray` into line with other
      container types by having cross-references default to linking to
      their type documentation, rather than their builtin callable entry.
      c6db4811
  20. 24 Nis, 2017 1 kayıt (commit)
  21. 23 Nis, 2017 1 kayıt (commit)
  22. 03 Ock, 2017 1 kayıt (commit)
  23. 02 Ock, 2017 1 kayıt (commit)
  24. 19 Ara, 2016 1 kayıt (commit)
  25. 15 Ara, 2016 2 kayıt (commit)
  26. 05 Ara, 2016 1 kayıt (commit)
    • Nick Coghlan's avatar
      Issue #23722: improve __classcell__ compatibility · 19d24674
      Nick Coghlan yazdı
      Handling zero-argument super() in __init_subclass__ and
      __set_name__ involved moving __class__ initialisation to
      type.__new__. This requires cooperation from custom
      metaclasses to ensure that the new __classcell__ entry
      is passed along appropriately.
      
      The initial implementation of that change resulted in abruptly
      broken zero-argument super() support in metaclasses that didn't
      adhere to the new requirements (such as Django's metaclass for
      Model definitions).
      
      The updated approach adopted here instead emits a deprecation
      warning for those cases, and makes them work the same way they
      did in Python 3.5.
      
      This patch also improves the related class machinery documentation
      to cover these details and to include more reader-friendly
      cross-references and index entries.
      19d24674
  27. 21 Kas, 2016 1 kayıt (commit)
  28. 19 Eki, 2016 1 kayıt (commit)
  29. 09 Eyl, 2016 2 kayıt (commit)
  30. 08 Eyl, 2016 1 kayıt (commit)
  31. 05 Eyl, 2016 1 kayıt (commit)
  32. 26 Agu, 2016 1 kayıt (commit)
  33. 18 Agu, 2016 1 kayıt (commit)
    • Guido van Rossum's avatar
      Anti-registration of various ABC methods. · 97c1adf3
      Guido van Rossum yazdı
      - Issue #25958: Support "anti-registration" of special methods from
        various ABCs, like __hash__, __iter__ or __len__.  All these (and
        several more) can be set to None in an implementation class and the
        behavior will be as if the method is not defined at all.
        (Previously, this mechanism existed only for __hash__, to make
        mutable classes unhashable.)  Code contributed by Andrew Barnert and
        Ivan Levkivskyi.
      97c1adf3
  34. 31 Tem, 2016 1 kayıt (commit)
  35. 30 Tem, 2016 2 kayıt (commit)