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: print '%*s' fails for unicode string
Type: Stage:
Components: Unicode Versions:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: lemburg Nosy List: barry-scott, lemburg
Priority: high Keywords:

Created on 2001-04-18 12:53 by barry-scott, last changed 2022-04-10 16:03 by admin. This issue is now closed.

Messages (2)
msg4340 - (view) Author: Barry Alan Scott (barry-scott) * Date: 2001-04-18 12:53
Python 2.0 (#8, Dec 13 2000, 09:47:07) [MSC 32 bit 
(Intel)] on win32
Type "copyright", "credits" or "license" for more 
information.
>>> print '%*s' % (7,u'fred')
Traceback (most recent call last):
  File "<stdin>", line 1, in ?
TypeError: * wants int
>>>
msg4341 - (view) Author: Marc-Andre Lemburg (lemburg) * (Python committer) Date: 2001-05-02 13:18
Logged In: YES 
user_id=38388

I'll check in a patch for this into CVS later today.
History
Date User Action Args
2022-04-10 16:03:58adminsetgithub: 34363
2001-04-18 12:53:03barry-scottcreate