Transport Sample Protocol - Tasks: task #9683, DTest name property problem with...
You are not allowed to post comments on this tracker with your current authentication level.
task #9683: DTest name property problem with python2.6
Submitter: | lionel duroyon <lduroyon> | ||
Submitted: | Tue 08 Sep 2009 04:48:03 PM UTC | ||
Category: | DTest | Should Start On: | Tue 08 Sep 2009 12:00:00 AM UTC |
Should be Finished on: | Thu 01 Oct 2009 12:00:00 AM UTC | Priority: | 5 - Normal |
Status: | In Progress | Privacy: | Public |
Percent Complete: | 90% | Assigned to: | lduroyon |
Open/Closed: | Open | Effort: | 0.00 |
Wed 30 Sep 2009 03:36:36 PM UTC, comment #2: |
lionel duroyon <lduroyon>![]() ![]() |
Tue 08 Sep 2009 04:53:13 PM UTC, comment #1: Name property is not defined in python2.5 for threading module whereas it is in python2.6.
|
lionel duroyon <lduroyon>![]() ![]() |
Tue 08 Sep 2009 04:48:03 PM UTC, original submission:
We get a
|
lionel duroyon <lduroyon>![]() ![]() |
No files currently attached
Depends on the following items: None found
Items that depend on this one: None found
Carbon-Copy List
There are 0 votes so far. Votes easily highlight which items people would like to see resolved in priority, independently of the priority of the item set by tracker managers.
to work with python versions <= 2.6 we are now using :
if not "name" in dir(threading.Thread):
def __getName(self):
return self.getName()
name = property(fget=__getName)