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: Pyshell history management error
Type: behavior Stage:
Components: IDLE Versions: Python 3.0
process
Status: closed Resolution: not a bug
Dependencies: Superseder:
Assigned To: kbk Nosy List: datamoc, georg.brandl, kbk
Priority: normal Keywords:

Created on 2009-03-05 22:05 by datamoc, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (4)
msg83223 - (view) Author: Michel Weinachter (datamoc) Date: 2009-03-05 22:05
I have created a variable named "liste_de_courses" when I use Alt-P to 
gather a previous command and modify it I have the following error:

------------
>>> liste_de_courses.append(’b')
			
SyntaxError: invalid character in identifier (<pyshell#21>, line 1)
------------

There is no issue in the command line.
msg83225 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2009-03-05 22:37
The code you pasted contains a non-ASCII quote (’).
msg83410 - (view) Author: Michel Weinachter (datamoc) Date: 2009-03-09 22:33
Hello,

Ok, you are right I'm currently working using latex and I should have
made a copy from the pdf.

Sorry.

2009/3/5 Georg Brandl <report@bugs.python.org>:
>
> Georg Brandl <georg@python.org> added the comment:
>
> The code you pasted contains a non-ASCII quote (’).
>
> ----------
> nosy: +georg.brandl
> resolution:  -> invalid
> status: open -> pending
>
> _______________________________________
> Python tracker <report@bugs.python.org>
> <http://bugs.python.org/issue5428>
> _______________________________________
>
msg85064 - (view) Author: Kurt B. Kaiser (kbk) * (Python committer) Date: 2009-04-01 18:22
Apparently this can be closed.
History
Date User Action Args
2022-04-11 14:56:46adminsetgithub: 49678
2009-04-01 18:22:01kbksetstatus: pending -> closed

nosy: + kbk
messages: + msg85064

assignee: kbk
2009-03-09 22:33:46datamocsetmessages: + msg83410
2009-03-05 22:37:02georg.brandlsetstatus: open -> pending
resolution: not a bug
messages: + msg83225
nosy: + georg.brandl
2009-03-05 22:05:05datamoccreate