1. 02 Haz, 2018 1 kayıt (commit)
  2. 03 Şub, 2018 1 kayıt (commit)
  3. 29 Ock, 2018 4 kayıt (commit)
  4. 28 Ock, 2018 1 kayıt (commit)
  5. 06 Ock, 2018 1 kayıt (commit)
    • Mario Corchero's avatar
      bpo-32206: Pdb can now run modules (GH-4752) · 9f1e5f1b
      Mario Corchero yazdı
      Add a new argument "-m" to the pdb module to allow
      users to run `python -m pdb -m my_module_name`.
      
      This relies on private APIs in the runpy module to work,
      but we can get away with that since they're both part of
      the standard library and can be updated together if
      the runpy internals get refactored.
      9f1e5f1b
  6. 22 Eyl, 2017 1 kayıt (commit)
  7. 07 Eyl, 2017 1 kayıt (commit)
  8. 12 Eki, 2016 1 kayıt (commit)
  9. 02 Eki, 2016 1 kayıt (commit)
  10. 10 Eyl, 2016 3 kayıt (commit)
  11. 26 May, 2016 1 kayıt (commit)
  12. 24 Nis, 2016 1 kayıt (commit)
  13. 05 Eyl, 2015 1 kayıt (commit)
  14. 01 Nis, 2015 1 kayıt (commit)
  15. 05 Eki, 2014 1 kayıt (commit)
  16. 12 Agu, 2014 1 kayıt (commit)
  17. 21 Kas, 2013 1 kayıt (commit)
  18. 13 Eki, 2013 1 kayıt (commit)
  19. 10 Eki, 2013 1 kayıt (commit)
  20. 15 Haz, 2013 1 kayıt (commit)
  21. 18 Mar, 2013 1 kayıt (commit)
  22. 05 Ara, 2012 1 kayıt (commit)
  23. 04 Ara, 2012 1 kayıt (commit)
  24. 06 May, 2012 2 kayıt (commit)
  25. 02 May, 2012 2 kayıt (commit)
  26. 01 May, 2012 5 kayıt (commit)
  27. 09 Ara, 2011 1 kayıt (commit)
  28. 17 Kas, 2011 1 kayıt (commit)
  29. 21 Şub, 2011 1 kayıt (commit)
    • Brett Cannon's avatar
      Issue #10990: Prevent tests from clobbering a set trace function. · 31f5929c
      Brett Cannon yazdı
      Many tests simply didn't care if they unset a pre-existing trace function. This
      made test coverage impossible. This patch fixes various tests to put back any
      pre-existing trace function. It also introduces test.support.no_tracing as a
      decorator which will temporarily unset the trace function for tests which
      simply fail otherwise.
      
      Thanks to Kristian Vlaardingerbroek for helping to find the cause of various
      trace function unsets.
      31f5929c