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: Deprecation warning for `backticks`
Type: Stage:
Components: Interpreter Core Versions: Python 2.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: christian.heimes, thomasglee
Priority: normal Keywords: patch

Created on 2007-07-15 10:55 by thomasglee, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
backquote_deprecation_2007071501.patch thomasglee, 2007-07-15 10:55 Initial patch
Messages (2)
msg52877 - (view) Author: Tom Lee (thomasglee) Date: 2007-07-15 10:55
Patch is attached which generates a DeprecationWarning for the use of `backticks` if the -3 argument is passed on the command line:

tom@localhost:~/src/python-trunk$ ./python -3
warning: callable() not supported in 3.x
warning: callable() not supported in 3.x
warning: callable() not supported in 3.x
warning: callable() not supported in 3.x
warning: callable() not supported in 3.x
warning: callable() not supported in 3.x
warning: callable() not supported in 3.x
warning: callable() not supported in 3.x
Python 2.6a0 (trunk:56394M, Jul 15 2007, 20:54:01) 
[GCC 4.1.2 (Ubuntu 4.1.2-0ubuntu4)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> `1`
sys:1: DeprecationWarning: backquote not supported in 3.x
'1'
>>> 
msg57777 - (view) Author: Christian Heimes (christian.heimes) * (Python committer) Date: 2007-11-23 09:10
Applied in r59132
Thanks!
History
Date User Action Args
2022-04-11 14:56:25adminsetgithub: 45199
2007-11-23 09:10:57christian.heimessetstatus: open -> closed
resolution: fixed
messages: + msg57777
nosy: + christian.heimes
2007-07-15 10:55:43thomasgleecreate