[issue15634] Add serialized decorator to the threading module

2013-10-27 Thread Antoine Pitrou
Antoine Pitrou added the comment: I have never done any Java, but @serialized doesn't look like an useful idiom to me, so I don't think it would be worth giving as an example in the docs. -- nosy: +tim.peters ___ Python tracker

[issue15634] Add serialized decorator to the threading module

2013-10-27 Thread Juan Javier
Juan Javier added the comment: David, I think this doesn't deserve to be part of the library since it is trivial to write and it is just a particular use case. Adding it as an example in the threading module's documentation might be a good idea, what do you think? --

[issue15634] Add serialized decorator to the threading module

2013-10-27 Thread R. David Murray
R. David Murray added the comment: Are you saying that because you've lost interest, or because you think we have? Sometimes things get lost here for a while, but picked up again later... -- ___ Python tracker __

[issue15634] Add serialized decorator to the threading module

2013-10-26 Thread Juan Javier
Juan Javier added the comment: It looks like this is not very interesting after all. -- status: open -> closed ___ Python tracker ___

[issue15634] Add serialized decorator to the threading module

2012-08-24 Thread Charles-François Natali
Charles-François Natali added the comment: "synchronized" has the merit of reusing Java's denomination, which this decorator intends to mimic, see http://docs.oracle.com/javase/tutorial/essential/concurrency/syncmeth.html Basically, synchronize works with the object/class (implicit) reentrant

[issue15634] Add serialized decorator to the threading module

2012-08-17 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- title: synchronized decorator for the threading module -> Add serialized decorator to the threading module ___ Python tracker ___