[issue15752] change test_json's use of deprecated unittest function

2012-08-21 Thread Ezio Melotti
Ezio Melotti added the comment: Fixed, thanks for the patch! -- assignee: -> ezio.melotti nosy: +ezio.melotti resolution: -> fixed stage: -> committed/rejected status: open -> closed type: -> enhancement versions: +Python 3.2 ___ Python tracker <

[issue15752] change test_json's use of deprecated unittest function

2012-08-21 Thread Roundup Robot
Roundup Robot added the comment: 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

[issue15752] change test_json's use of deprecated unittest function

2012-08-21 Thread Jeff Knupp
New submission from Jeff Knupp: patch to test_json to not use assert(Raises)Regexp, which has been deprecated in favor of assert(Raises)Regex. -- components: Tests files: json_deprecated.patch keywords: patch messages: 168750 nosy: Jeff.Knupp priority: normal severity: normal status: op