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: clinic.py str_converter with encoding throws exception
Type: crash Stage: resolved
Components: Demos and Tools Versions: Python 3.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: larry Nosy List: larry, python-dev, rmsr
Priority: normal Keywords:

Created on 2014-01-18 04:50 by rmsr, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
clinic_encoding_exception.c rmsr, 2014-01-18 04:50
Messages (3)
msg208384 - (view) Author: Ryan Smith-Roberts (rmsr) * Date: 2014-01-18 04:50
Find test file attached. The exception:

Exception raised during parsing:
Traceback (most recent call last):
...
  File "proj/python/trunk.hg/Tools/clinic/clinic.py", line 1535, in render
    self.parse_argument(data.parse_arguments)
  File "proj/python/trunk.hg/Tools/clinic/clinic.py", line 1563, in parse_argument
    list.append(c_repr(self.encoding))
NameError: global name 'c_repr' is not defined
msg208389 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2014-01-18 08:26
New changeset 949acdd43b45 by Larry Hastings in branch 'default':
Issue #20292: Small bug fix for Argument Clinic supporting format units
http://hg.python.org/cpython/rev/949acdd43b45
msg208390 - (view) Author: Larry Hastings (larry) * (Python committer) Date: 2014-01-18 08:27
Thanks for the report!  It's fixed now.  Sorry about that!
History
Date User Action Args
2022-04-11 14:57:57adminsetgithub: 64491
2014-01-18 08:27:58larrysetstatus: open -> closed
messages: + msg208390

assignee: larry
components: + Demos and Tools, - Build
resolution: fixed
stage: resolved
2014-01-18 08:26:46python-devsetnosy: + python-dev
messages: + msg208389
2014-01-18 04:50:51rmsrcreate