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: Remove the repr()-backticks
Type: Stage:
Components: Interpreter Core Versions: Python 3.0
process
Status: closed Resolution: accepted
Dependencies: Superseder:
Assigned To: brett.cannon Nosy List: brett.cannon, collinwinter, gvanrossum
Priority: normal Keywords: patch

Created on 2006-06-04 20:54 by collinwinter, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
py3k-remove_repr_backticks.patch collinwinter, 2006-06-04 20:54 Remove support for backticks, against r46648.
Messages (3)
msg50424 - (view) Author: Collin Winter (collinwinter) * (Python committer) Date: 2006-06-04 20:54
This patch removes parser support for backticks, the
UNARY_CONVERT opcode and all usages of the
repr()-backticks. It also adds a test to test_syntax to
make sure the backticks really are gone.

The patch is against r46648.
msg50425 - (view) Author: Guido van Rossum (gvanrossum) * (Python committer) Date: 2006-08-26 20:21
Logged In: YES 
user_id=6380

For Brett to check that he's done all that this patch does
already, and then to close.
msg50426 - (view) Author: Brett Cannon (brett.cannon) * (Python committer) Date: 2006-08-27 01:03
Logged In: YES 
user_id=357491

OK, Collin caught one thing I didn't.  All fixed now.
History
Date User Action Args
2022-04-11 14:56:17adminsetgithub: 43456
2008-01-06 22:29:46adminsetkeywords: - py3k
versions: + Python 3.0
2006-06-04 20:54:02collinwintercreate