This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: change test_json's use of deprecated unittest function
Type: enhancement Stage: resolved
Components: Tests Versions: Python 3.2, Python 3.3
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: ezio.melotti Nosy List: ezio.melotti, jeffknupp, python-dev
Priority: normal Keywords: patch

Created on 2012-08-21 08:32 by jeffknupp, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
json_deprecated.patch jeffknupp, 2012-08-21 08:32 review
Messages (3)
msg168750 - (view) Author: Jeff Knupp (jeffknupp) * Date: 2012-08-21 08:32
patch to test_json to not use assert(Raises)Regexp, which has been deprecated in favor of assert(Raises)Regex.
msg168751 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2012-08-21 08:40
New changeset 3a02a1f7d069 by Ezio Melotti in branch '3.2':
#15752: s/assertRaisesRegexp/assertRaisesRegex/g
http://hg.python.org/cpython/rev/3a02a1f7d069

New changeset b36ce0a3a844 by Ezio Melotti in branch 'default':
#15752: merge with 3.2.
http://hg.python.org/cpython/rev/b36ce0a3a844
msg168752 - (view) Author: Ezio Melotti (ezio.melotti) * (Python committer) Date: 2012-08-21 08:40
Fixed, thanks for the patch!
History
Date User Action Args
2022-04-11 14:57:35adminsetgithub: 59957
2012-08-21 08:41:00ezio.melottisetstatus: open -> closed

type: enhancement
assignee: ezio.melotti
versions: + Python 3.2
nosy: + ezio.melotti

messages: + msg168752
resolution: fixed
stage: resolved
2012-08-21 08:40:05python-devsetnosy: + python-dev
messages: + msg168751
2012-08-21 08:32:46jeffknuppcreate