summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_ascii_formatd.py
Commit message (Collapse)AuthorAgeFilesLines
* Issue #7849: Now the utility ``check_warnings`` verifies if the warnings areFlorent Xicluna2010-03-071-4/+1
| | | | effectively raised. A new utility ``check_py3k_warnings`` deals with py3k warnings.
* DeprecationWarning is now silent by default.Brett Cannon2010-01-101-0/+2
| | | | | | | | | | | | This was originally suggested by Guido, discussed on the stdlib-sig mailing list, and given the OK by Guido directly to me. What this change essentially means is that Python has taken a policy of silencing warnings that are only of interest to developers by default. This should prevent users from seeing warnings which are triggered by an application being run against a new interpreter before the app developer has a chance to update their code. Closes issue #7319. Thanks to Antoine Pitrou, Ezio Melotti, and Brian Curtin for helping with the issue.
* Improved test for a deprecation warning.Eric Smith2009-10-311-2/+1
|
* Issue #5835, deprecate PyOS_ascii_formatd.Eric Smith2009-04-251-0/+62
If anyone wants to clean up the documentation, feel free. It's my first documentation foray, and it's not that great. Will port to py3k with a different strategy.