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 serhiy.storchaka
Recipients serhiy.storchaka
Date 2014-07-31.14:47:51
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1406818071.8.0.276271200629.issue22115@psf.upfronthosting.co.za>
In-reply-to
Content
Command used to monitor Tcl variable access ("trace variable", "trace vdelete", "trace vinfo") are deprecated and will likely be removed in a future version of Tcl. Replacements ("trace add variable", "trace remove variable", "trace info variable") use slightly different syntax (operations are specified as a list of words "array", "read", "write" and "unset" instead of a string containing characters "a", "r", "w" and "u"). Therefore we need new set of methods.

Proposed preliminary patch adds trace_add, trace_remove and trace_info methods to the Variable class. It will be changed after applying issue22068 patch. Tests for old methods will be backported to older Python versions.
History
Date User Action Args
2014-07-31 14:47:51serhiy.storchakasetrecipients: + serhiy.storchaka
2014-07-31 14:47:51serhiy.storchakasetmessageid: <1406818071.8.0.276271200629.issue22115@psf.upfronthosting.co.za>
2014-07-31 14:47:51serhiy.storchakalinkissue22115 messages
2014-07-31 14:47:51serhiy.storchakacreate