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.

Author zach.ware
Recipients Mohamed_Atef, docs@python, zach.ware
Date 2015-09-14.05:41:04
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1442209265.45.0.345431576732.issue25104@psf.upfronthosting.co.za>
In-reply-to
Content
You appear to be reading the Python 3 documentation and using Python 2:

$ python3
Python 3.4.3 (v3.4.3:9b73f1c3e601, Feb 23 2015, 02:52:03) 
[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> chr(1234)
'Ӓ'
>>> ^D
$ python2
Python 2.7.10 (v2.7.10:15c95b7d81dc, May 23 2015, 09:33:12) 
[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> chr(1234)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ValueError: chr() arg not in range(256)
History
Date User Action Args
2015-09-14 05:41:05zach.waresetrecipients: + zach.ware, docs@python, Mohamed_Atef
2015-09-14 05:41:05zach.waresetmessageid: <1442209265.45.0.345431576732.issue25104@psf.upfronthosting.co.za>
2015-09-14 05:41:05zach.warelinkissue25104 messages
2015-09-14 05:41:04zach.warecreate