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 thomasglee
Recipients
Date 2007-07-15.10:55:43
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
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'
>>> 
History
Date User Action Args
2007-08-23 15:59:09adminlinkissue1754271 messages
2007-08-23 15:59:09admincreate