[issue10968] threading.Timer should be a class so that it can be derived

2012-10-06 Thread Roundup Robot

Roundup Robot added the comment:

New changeset 98499371ca53 by R David Murray in branch '3.3':
#10968: commit threading doc changes and corresponding whatsnew entry.
http://hg.python.org/cpython/rev/98499371ca53

New changeset ad435964fc9c by R David Murray in branch 'default':
merge #10968: commit threading doc changes and corresponding whatsnew entry.
http://hg.python.org/cpython/rev/ad435964fc9c

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10968
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10968] threading.Timer should be a class so that it can be derived

2012-10-06 Thread R. David Murray

R. David Murray added the comment:

I have now committed (a revised version of) the doc changes.

Like I said in the commit message, it is unfortunate that the underscore names 
were not kept as aliases and that RLock wasn't also converted to a class, but 
it is too late to fix that in 3.3.  If someone wants to do RLock in 3.4 they 
should open a new issue.

--
resolution:  - fixed
stage: patch review - committed/rejected
status: open - closed

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10968
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10968] threading.Timer should be a class so that it can be derived

2012-06-25 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

Ping.

--
keywords: +needs review
stage:  - patch review

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10968
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10968] threading.Timer should be a class so that it can be derived

2011-09-15 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

Victor: Yes, I know the doc needs an update, that’s why I posted a patch six 
weeks ago and asked for a review.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10968
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10968] threading.Timer should be a class so that it can be derived

2011-09-15 Thread STINNER Victor

STINNER Victor victor.stin...@haypocalc.com added the comment:

 that’s why I posted a patch six weeks ago and asked for a review

Oh ok, cool, I missed the patches.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10968
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10968] threading.Timer should be a class so that it can be derived

2011-09-13 Thread STINNER Victor

STINNER Victor victor.stin...@haypocalc.com added the comment:

@eric: The doc has to be updated:

http://docs.python.org/dev/library/threading.html#threading.activeCount

threading.Condition()
A factory function that returns a new condition variable object. A condition 
variable allows one or more threads to wait until they are notified by another 
thread.

See Condition Objects.

--

See also (maybe) issue #12960.

--
nosy: +haypo

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10968
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10968] threading.Timer should be a class so that it can be derived

2011-07-29 Thread Roundup Robot

Roundup Robot devn...@psf.upfronthosting.co.za added the comment:

New changeset 7f606223578a by Éric Araujo in branch 'default':
Remove indirection in threading (issue #10968).
http://hg.python.org/cpython/rev/7f606223578a

--
nosy: +python-dev

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10968
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10968] threading.Timer should be a class so that it can be derived

2011-07-28 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

I’ve committed the cleanup to my 3.3 clone and will push this week.

Here’s a doc patch.  Before my patch, the various classes were documented in 
two parts: one entry with the factory function (e.g. Thread), without index 
reference, and one section (e.g. “Thread Objects”), which used a class 
directive (and thus index target) for most but not all classes.

After my patch, all classes are documented with a class directive, in their 
section (i.e. “Thread Objects”), with a versionchanged note informing that the 
name used to be that of a factory function.  The only remaining glitch is that 
the “X Objects” sections start with a description of the class’ use, which 
references methods with constructs like :meth:`run`, which cannot be turned 
into links as Sphinx lacks context: the class directive only happens after.  I 
could move the class directives right after the heading (“X Objects”), so that 
the meth roles get turned into links.

--
assignee:  - eric.araujo
Added file: http://bugs.python.org/file22784/threading-3.3-doc.diff

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10968
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10968] threading.Timer should be a class so that it can be derived

2011-07-28 Thread R. David Murray

R. David Murray rdmur...@bitdance.com added the comment:

You ought to be able to use either a context directive (I forget its name and 
syntax), or the full reference syntax (:meth:`~threading.Thread.run`) to make 
those links work without moving things around.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10968
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10968] threading.Timer should be a class so that it can be derived

2011-07-28 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

 You ought to be able to use either a context directive (I forget its
 name and syntax),

Hm, do you mean something similar to currentmodule?

 or the full reference syntax (:meth:`~threading.Thread.run`) to make
 those links work without moving things around.

Yes, Thread.run would work, but I find that inelegant.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10968
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10968] threading.Timer should be a class so that it can be derived

2011-07-12 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

Attached patch removes the indirection functions; the _Verbose shenanigans are 
left alone.  The test suite passes; I haven’t edited the doc yet.

--
keywords: +patch
Added file: http://bugs.python.org/file22631/threading-classes.diff

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10968
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10968] threading.Timer should be a class so that it can be derived

2011-02-16 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

One concern expressed on a duplicate report by Martijn van Oosterhout:

 Note this is a behaviour change. Under the old scheme (Foo is a class)

 Foo.timerclass = Timer

 created a method, whereas now it will just assign the class as an
 attribute. To work around this you had to use _Timer. Will that dummy
 class remain as an alias to avoid breaking code (in 2.7 at least)?

Stable versions (2.7, 3.1, soon 3.2) won’t get this change.  They may get a doc 
patch to warn people about the fake class/factory thing.


In the py3k documentation for threading, some of the fake classes are 
documented as factories (Event) and other ones as classes (Timer); do you 
people think there would be harm in cleaning up all those outdated shenanigans 
for 3.3, with due versionchanged notes in the doc?

--
nosy: +Martijn.van.Oosterhout

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10968
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10968] threading.Timer should be a class so that it can be derived

2011-01-22 Thread Giampaolo Rodola'

Changes by Giampaolo Rodola' g.rod...@gmail.com:


--
nosy: +giampaolo.rodola

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10968
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10968] threading.Timer should be a class so that it can be derived

2011-01-21 Thread Eric Smith

Changes by Eric Smith e...@trueblade.com:


--
nosy: +eric.smith
title: Timer should be a class so that it can be derived - threading.Timer 
should be a class so that it can be derived

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10968
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10968] threading.Timer should be a class so that it can be derived

2011-01-21 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

Adding Guido, who checked the module in, to nosy.

Guido: Could you tell us whether the fake classes in threading.py should stay 
as is or can be fixed?  The whole _Verbose business and Thing/_Thing 
indirection seem a bit outdated and unneeded.

--
nosy: +eric.araujo, gvanrossum

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10968
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10968] threading.Timer should be a class so that it can be derived

2011-01-21 Thread Guido van Rossum

Guido van Rossum gu...@python.org added the comment:

IIRC:

The design started out this way because it predates new-style classes. When 
this was put in one couldn't subclass extension types, and there were 
plans/hopes to replace some of the lock types with platform-specific built-in 
versions on some platforms.

Since it is now possible to write subclassable extension types the Thing/_Thing 
design is no longer needed.

I'm not sure about the _Verbose hacks, if it is deemed not useful I'm fine with 
letting it go.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10968
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10968] threading.Timer should be a class so that it can be derived

2011-01-21 Thread R. David Murray

R. David Murray rdmur...@bitdance.com added the comment:

See also issue 5831.  That should probably be closed as a dup of this since 
this has an explanation.

--
nosy: +r.david.murray

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10968
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com