1. aa98058 use assert[Not]In where appropriate by Ezio Melotti · 16 years ago
  2. e78e5d2 Issue #6415: Fixed warnings.warn sagfault on bad formatted string. by Hirokazu Yamamoto · 16 years ago
  3. 5c8da86 convert usage of fail* to assert* by Benjamin Peterson · 16 years ago
  4. 5533ff6 Issue 5354: Change API for import_fresh_module() to better support test_warnings use case (also fixes some bugs in the original implementation) by Nick Coghlan · 16 years ago
  5. cd2e704 Issue 5354: Provide a standardised testing mechanism for doing fresh imports of modules, including the ability to block extension modules in order to test the pure Python fallbacks by Nick Coghlan · 16 years ago
  6. ce3d221 test_warnings ironically had a single test that was not protecting the warnings by Brett Cannon · 16 years ago
  7. 15ba4da _warnings was importing itself to get an attribute. That's bad if warnings gets by Brett Cannon · 16 years ago
  8. 6c4cff0 Require implementations for warnings.showwarning() support the 'line' argument. by Brett Cannon · 16 years ago
  9. d2e0938 Issue #3781: Final cleanup of warnings.catch_warnings and its usage in the test suite. Closes issue w.r.t. 2.6 (R: Brett Cannon) by Nick Coghlan · 17 years ago
  10. 672237d warnings.catch_warnings() now returns a list or None instead of the custom by Brett Cannon · 17 years ago
  11. 32476fc Deprecate bsddb for removal in Python 3.0. by Brett Cannon · 17 years ago
  12. 1eaf074 Move test.test_support.catch_warning() to the warnings module, rename it by Brett Cannon · 17 years ago
  13. 38469e2 Make test.test_support.catch_warnings more robust as discussed on python-dev. Also add explicit tests for itto test_warnings. by Nick Coghlan · 17 years ago
  14. dea1b56 warnings.warn_explicit() did not have the proper TypeErrors in place to prevent by Brett Cannon · 17 years ago
  15. 8859822 Fix another "refleak" by clearing the filters after test. by Georg Brandl · 17 years ago
  16. d295032 Fix logic error in Python/_warnings.c and add a test to verify by Benjamin Peterson · 17 years ago
  17. e3dcb01 Fix a bug in the handling of the stacklevel argument in warnings.warn() where by Brett Cannon · 17 years ago
  18. 8a232cc Add a DeprecationWarning for when warnings.showwarning() is set to a function by Brett Cannon · 17 years ago
  19. 64a4bbe Fix the C implementation of 'warnings' to infer the filename of the module that by Brett Cannon · 17 years ago
  20. 607bff1 Some tests did not pass on repeated calls (regrtest -R::) by Amaury Forgeot d'Arc · 17 years ago
  21. c477427 Fix spliting on colons on Windows machines with a file path by limiting the by Brett Cannon · 17 years ago
  22. 25bb818 Add an explicit check for output in a test to try to diagnose a failure on by Brett Cannon · 17 years ago
  23. 667bb4f Fix test_warnings by making the state of things more consistent for each test by Brett Cannon · 17 years ago
  24. e974689 Re-implement the 'warnings' module in C. This allows for usage of the by Brett Cannon · 17 years ago
  25. 905c31c Add tests for the warnings module; specifically formatwarning and showwarning. by Brett Cannon · 18 years ago
  26. 855da6c Make test_warnings re-entrant. by Brett Cannon · 18 years ago
  27. 2ee4128 Remove test.test_support.guard_warnings_filter. by Brett Cannon · 18 years ago
  28. e6dae6c Implement a contextmanager test.test_support.catch_warning that can by Walter Dörwald · 18 years ago
  29. e1a9b42 Add tests for the filename. by Walter Dörwald · 18 years ago
  30. 8bd6500 Document that CatchWarningTests is reused by test_structmembers.py. by Walter Dörwald · 18 years ago
  31. d815d35 Move the functionality for catching warnings in test_warnings.py into a separate by Walter Dörwald · 18 years ago
  32. 3249d00 Whitespace normalization. by Tim Peters · 19 years ago
  33. 53ab5b7 'warning's was improperly requiring that a command-line Warning category be by Brett Cannon · 19 years ago
  34. 767833d Make test_warnings play nice with regrtest -R:: now that regrtest doesn't by Thomas Wouters · 19 years ago
  35. ce4a9c9 Fix tests so they pass in -R mode by Neal Norwitz · 19 years ago
  36. be66e94 Don't filter out OverflowWarning; should be a test failure if it is raised by by Brett Cannon · 19 years ago
  37. c885443 Stop producing or using OverflowWarning. PEP 237 thought this would by Tim Peters · 21 years ago
  38. d6f6e50 Reworked test_warnings.py: by Raymond Hettinger · 22 years ago
  39. dc9dcf1 This test failed on WindowsME because the full file path did not get by Raymond Hettinger · 22 years ago
  40. b6d2f3e Don't include slash in search string; it's OS-specific. by Jeremy Hylton · 22 years ago
  41. 8501466 Change warnings to avoid importing re module during startup. by Jeremy Hylton · 22 years ago