diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-08-18 16:45:31 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-08-18 16:45:31 (GMT) |
commit | 773c17b3e107a23c131974f71d3e2f145ee5203d (patch) | |
tree | b299a18fa2b9043d76a05edc785a8d9a30e8a53c /Lib/threading.py | |
parent | 46f5f9ee0fe359100fdd7c84bd4a3b4a61a4c98f (diff) | |
download | cpython-773c17b3e107a23c131974f71d3e2f145ee5203d.zip cpython-773c17b3e107a23c131974f71d3e2f145ee5203d.tar.gz cpython-773c17b3e107a23c131974f71d3e2f145ee5203d.tar.bz2 |
Merged revisions 65818 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r65818 | benjamin.peterson | 2008-08-18 11:40:03 -0500 (Mon, 18 Aug 2008) | 4 lines
change threading.getIdent to a property
This is new in 2.6 so now need to worry about backwards compatibility :)
........
Diffstat (limited to 'Lib/threading.py')
-rw-r--r-- | Lib/threading.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/threading.py b/Lib/threading.py index 4832101..ccbd67e 100644 --- a/Lib/threading.py +++ b/Lib/threading.py @@ -629,7 +629,8 @@ class Thread(_Verbose): assert self._initialized, "Thread.__init__() not called" self._name = str(name) - def get_ident(self): + @property + def ident(self): assert self._initialized, "Thread.__init__() not called" return self._ident |