[Patches] [ python-Patches-1754271 ] Deprecation warning for `backticks`
SourceForge.net
noreply at sourceforge.net
Sun Jul 15 12:55:43 CEST 2007
Patches item #1754271, was opened at 2007-07-15 20:55
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=305470&aid=1754271&group_id=5470
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: Core (C code)
Group: Python 2.6
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Tom Lee (thomasglee)
Assigned to: Nobody/Anonymous (nobody)
Summary: Deprecation warning for `backticks`
Initial Comment:
Patch is attached which generates a DeprecationWarning for the use of `backticks` if the -3 argument is passed on the command line:
tom at 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'
>>>
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=305470&aid=1754271&group_id=5470
More information about the Patches
mailing list