homepage

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.

classification
Title: New shared-keys dictionary implementation
Type: performance Stage: resolved
Components: Interpreter Core Versions: Python 3.3
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: Jim.Jewett, Mark.Shannon, Yury.Selivanov, benjamin.peterson, gregory.p.smith, jcea, jcon, loewis, pitrou, pjenvey, python-dev, rhettinger, terry.reedy, vstinner
Priority: normal Keywords: patch

Created on 2012年01月29日 14:26 by Mark.Shannon, last changed 2022年04月11日 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
691ce331f955.diff Mark.Shannon, 2012年02月13日 15:21 Patch to rev. 06a6fed0da56 review
49b7e7e4a27c.diff Mark.Shannon, 2012年02月28日 13:05 review
257e16e71654.diff Mark.Shannon, 2012年03月09日 10:12 patch to revision 2a142141e5fd review
372d0bca85ae.diff Mark.Shannon, 2012年04月02日 11:16 Patch to rev. 9fcb2676696c review
73423916a242.diff Mark.Shannon, 2012年04月23日 13:50 Patch to rev. 73423916a242 review
str_subclass.patch Mark.Shannon, 2012年04月23日 17:34 review
gc_tracking.patch Mark.Shannon, 2012年04月24日 13:25 Patch review
make_split_table_error.patch Mark.Shannon, 2012年04月24日 15:37 review
cached_keys.patch Mark.Shannon, 2012年04月27日 17:01 review
dkdebug.patch pitrou, 2012年04月27日 20:00 review
insertdict.patch Mark.Shannon, 2012年04月30日 09:14 review
Repositories containing patches
https://bitbucket.org/markshannon/cpython_new_dict
Messages (43)
msg152229 - (view) Author: Mark Shannon (Mark.Shannon) * (Python committer) Date: 2012年01月29日 14:26
The proposed dictionary implementation allows sharing of keys & hashes between dictionaries. This leads to substantial memory savings for object-oriented programs. For non-OO programs the impact is negligible.
msg152253 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2012年01月29日 18:43
In the initial comment, 'Dummy' to 'Deleted' here but only here:
- Holds an active (key, value) pair. Active can transition to Dummy 
+ Holds an active (key, value) pair. Active can transition to Deleted 
Im Lib/test/test_pprint.py
 def test_set_reprs(self): ...
 # Consequently, this test is fragile and ...
+ # XXX So why include this "test" in the first place?
Raymond, I believe you added this 44927 and revised for 3.x in 45067.
I imagine it will also be a problem with randomized hashes. Should it be removed or somehow revised?
msg152293 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2012年01月30日 00:05
I see two unrelated parts in your patch:
 - change dictionary structure in memory
 - change many constants linked to optimization: PyDICT_MAXFREELIST: 80->40, 2/3->5/8, etc.
You may open a new issue for the second part, except if I am wrong and you need to change constants for the first part?
(I don't understand why you changed constants and how you chose new values.)
msg152345 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2012年01月30日 20:22
This would likely require a PEP before having a chance of being considered for inclusion.
msg152351 - (view) Author: Mark Shannon (Mark.Shannon) * (Python committer) Date: 2012年01月30日 21:26
Does this really need a PEP?
There is no new language feature and no change to any API.
It is just saving some memory.
The only possible issue is changing dict repr() ordering, 
but issue 13703 will do that anyway.
msg152366 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2012年01月31日 02:17
Changing dictionaries is a big deal. You're changing many pieces at once (not a good idea) including changing tunable parameters that are well-studied (I spent a month testing whether 5/8 was better idea that 2/3 for resizing or when the ideal small dict size was 4, 8, or 16). You're changing the meaning of the fields in dictobject.h which will likely break any code that relied on those.
The ideas may be good ones but they warrant a good deal of thought. Dicts weren't just slapped together -- the current code is the product to two decades of tweaking by engineers who devoted significant time to the task. It would be easy to unknowingly undo some of their work.
msg152373 - (view) Author: Mark Shannon (Mark.Shannon) * (Python committer) Date: 2012年01月31日 10:38
Raymond Hettinger wrote:
> Raymond Hettinger <raymond.hettinger@gmail.com> added the comment:
> 
> Changing dictionaries is a big deal. You're changing many pieces at once (not a good idea) including changing tunable parameters that are well-studied (I spent a month testing whether 5/8 was better idea that 2/3 for resizing or when the ideal small dict size was 4, 8, or 16). You're changing the meaning of the fields in dictobject.h which will likely break any code that relied on those.
> 
> The ideas may be good ones but they warrant a good deal of thought. Dicts weren't just slapped together -- the current code is the product to two decades of tweaking by engineers who devoted significant time to the task. It would be easy to unknowingly undo some of their work.
> 
OK.
I'll write a PEP.
By the way, I'm trying not changing the tunable parameters for the 
unshared-keys case, just the shared-keys case. Of course, they do 
interact with each other.
msg152380 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2012年01月31日 12:55
As Victor I think the tunables could be changed separately, unless they truely get in the way of the shared-keys optimization.
By the way, there will need a "protection" for the case where instances are used as bags of key/value pairs (dict-alikes with attribute access). Perhaps bound the size of the keys array to 100 entries and then switch into unshared mode.
msg152419 - (view) Author: Gregory P. Smith (gregory.p.smith) * (Python committer) Date: 2012年02月01日 00:09
FYI - I strongly support this type of work to reduce memory use of the Python interpreter! :)
Also, yes, constant changing should be separate from this change but are worth occasionally re-measuring and justifying as common computer architectures have changed since the original decisions were made.
msg152863 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2012年02月08日 14:37
Looking at your latest patch, I worry about "any deletion
+(including pop & popitem) causes a split table to become a combined table". Why wouldn't you use a dummy pointer (such as ((PyObject *) 1)) to signal deleted slots?
msg152885 - (view) Author: Mark Shannon (Mark.Shannon) * (Python committer) Date: 2012年02月08日 16:34
Antoine Pitrou wrote:
> Antoine Pitrou <pitrou@free.fr> added the comment:
> 
> Looking at your latest patch, I worry about "any deletion
> +(including pop & popitem) causes a split table to become a combined table". Why wouldn't you use a dummy pointer (such as ((PyObject *) 1)) to signal deleted slots?
In fact here is no need for a dummy pointer.
When deleting from a split-table, the value can just be set to NULL,
the resulting key-NULL pair is legal in a split-table.
Your suggestion doesn't make the code any more complex, so I've included it.
In practice, it will very rare that a deletion occurs in a split table
(since they are only used for attribute dictionaries).
msg154637 - (view) Author: Jim Jewett (Jim.Jewett) * (Python triager) Date: 2012年02月29日 15:15
As of Feb 28, 2012, the PEP mentions an additional optimization of storing the values in an array indexed by (effectively) key insertion order, rather than key position. ("Alternative Implementation")
It states that this would reduce memory usage for the values array by 1/3. 1/3 is a worst-case measurement; average is 1/2. (At savings of less than 1/3, the keys would resize, to initial savings of 2/3. And yes, that means in practice, the average savings would be greater than half, because the frequency of dicts of size N decreases with N.)
It states that the keys table would need an additional "values_size" field, but in the absence of dummies, this is just ma_used.
Note that this would also simplify resizing, as the values arrays would not have to be re-ordered, and would not have to be modified at all unless/until that particular instance received a value for a position beyond its current size.
msg154645 - (view) Author: Mark Shannon (Mark.Shannon) * (Python committer) Date: 2012年02月29日 16:24
Jim Jewett wrote:
> Jim Jewett <jimjjewett@gmail.com> added the comment:
> 
> As of Feb 28, 2012, the PEP mentions an additional optimization of storing the values in an array indexed by (effectively) key insertion order, rather than key position. ("Alternative Implementation")
> 
> It states that this would reduce memory usage for the values array by 1/3. 1/3 is a worst-case measurement; average is 1/2. (At savings of less than 1/3, the keys would resize, to initial savings of 2/3. And yes, that means in practice, the average savings would be greater than half, because the frequency of dicts of size N decreases with N.)
> 
I presume you mean to allocate a values array of size == actual keys
rather than size == usable keys.
Making the values array smaller than the the number of usable keys
causes a number of issues:
1. The values_size will need to be kept in the dict, not in the keys, 
which would make the dict larger for size 3 or 5, the same size for
size 2 or 4, but it would save memory for sizes 6-8 (see below).
So it might not save memory at all, it depends on the distribution of 
the sizes of shared-key dicts.
2. dk_usable would need to be reverted to dk_fill (c.f ma_fill) in order
to quickly allocate values arrays. This would slow down the resizing 
check, which is now done before insertion, so might be slower.
(not really a problem, but it might slow down inserts)
3. An extra check needs to be performed for each read to ensure the 
index is in-bounds
(again not really a problem, but it might slow down reads)
Comparative sizes of values array (including size field):
Items Proposed Alternative Other Alternative Delta
 (size == usuable) (size == keys (+1))
 1 4 3 2 -1	
 2 4 3 3 0
 3 4 3 4 +1
 4 8 5 5 0
 5 8 5 6 +1
 6 16 10 7 -3
 7 16 10 8 -2
 8 16 10 9 -1
 9 16 10 10 0
 10 16 10 11 +1
 12 32 21 13 -8
 14 32 21 15 -6
The memory savings of the two alternative implementations are broadly
similar.
Clearly, either of the alternatives are attractive in terms of memory 
use. I think it is definitely worth investigating further, but I would 
like to get the proposed implementation into CPython first.
> It states that the keys table would need an additional "values_size" field, but in the absence of dummies, this is just ma_used.
values_size != ma_used
values_size is the size of the values array, not the number of values.
Don't forget deletions or the case where items are inserted in a 
different order from that of another dict sharing the same keys.
Although there are no dummies, (key != NULL, value == NULL) is a legal
pair representing a missing or deleted value.
Cheers,
Mark.
msg155246 - (view) Author: Jim Jewett (Jim.Jewett) * (Python triager) Date: 2012年03月09日 17:13
>> As of Feb 28, 2012, the PEP mentions an additional
>> optimization of storing the values in an array indexed
>> by (effectively) key insertion order, rather than key
>> position. ("Alternative Implementation")
>> It states that this would reduce memory usage for the
>> values array by 1/3. 1/3 is a worst-case measurement;
>> average is 1/2. (At savings of less than 1/3, the keys
>> would resize, to initial savings of 2/3. And yes, that
>> means in practice, the average savings would be greater
>> than half, because the frequency of dicts of size N
>> decreases with N.)
> I presume you mean to allocate a values array of
> size == actual keys rather than size == usable keys.
Actually, I meant size==maximum(keys in use for this dict), 
so that for objects with a potentially complex lifecycle, 
those instances that had not yet needed the new attributes
would not need to allocate space for them. 
But I see now that just allocating space for each of the 
potential keys is indeed simpler. And I suppose that a
class which won't eventually need all the attributes for 
every instance is an unusual case. 
So to get beneath 2/3 without lots of reallocation 
probably requires knowing when the key set is likely
to be complete, and that is indeed more complex than
the current changes. (That said, you have left code
in for immutable keys, so there may be cases where 
this isn't so hard after all.)
> Making the values array smaller than the the number 
> of usable keys causes a number of issues:
> 1. The values_size will need to be kept in the dict,
> not in the keys, 
That was indeed true for my proposal. If you just allocate
2/3, then you don't need to store the value, unless you 
want to be lazy about reallocating when the keys grow. 
Even then, there are few enough potential sizes to fit
the information in a byte, or we could get the info for
free *if* the dict were already timestamped or versioned.
>> It states that the keys table would need an additional
>> "values_size" field, but in the absence of dummies, this
>> is just ma_used.
I was mixing two structures in my mind. The current key 
count (which is sufficient for a new values array) is 
actually USABLE_FRACTION(dk_size) - dk_free.
msg155248 - (view) Author: Jim Jewett (Jim.Jewett) * (Python triager) Date: 2012年03月09日 17:30
On Fri, Mar 9, 2012 at 12:13 PM, Jim Jewett
> So to get beneath 2/3 without lots of reallocation
> probably requires knowing when the key set is likely
> to be complete, and that is indeed more complex than
> the current changes. (That said, you have left code
> in for immutable keys, so there may be cases where
> this isn't so hard after all.)
On second thought, avoiding reallocation doesn't have
to be perfect -- just good enough to work on average.
For a *normal* class, the keyset won't change after
the first instance has completed its __init__.
Which of course again leads to autoslots and a
normally NULL extra_dict. And having done that,
it makes sense to combine the (normal) instance
dict with the type dict to simplify the lookup chain,
but ... that is probably too aggressive for the 3.3
schedule. One silver lining to your patch plus hash
randomization is that that 3.4 should have a
pretty free hand with regards to internal details.
msg156096 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2012年03月16日 22:47
The latest patch has a significant (negative) effect on some benchmarks:
### silent_logging ###
Min: 0.057927 -> 0.068228: 1.18x slower
Avg: 0.058218 -> 0.068660: 1.18x slower
Significant (t=-36.06)
### mako ###
Min: 0.118240 -> 0.140451: 1.19x slower
Avg: 0.120145 -> 0.142422: 1.19x slower
Significant (t=-61.66)
These regressions should be fixed before going any further, IMO.
msg157365 - (view) Author: Mark Shannon (Mark.Shannon) * (Python committer) Date: 2012年04月02日 15:21
I'm not bothered by the regression in "silent_logging",
as it is a micro benchmark with a very short running time.
The regression in "mako" is, I think, caused by competition for the
data cache between the new dict implementation and the method-cache
used by _PyType_Lookup. Although the new-dict uses less memory overall,
the size of a single split-table dict (keys + value) is larger than a combined table.
Reducing the method-cache size from 2**10 to 2**9 allows the working set to fit better in the cache.
This fixes the regression in "mako", but makes OO programs that use few objects (such as richards) a bit slower.
Compared with tip, the new-dict implementation
is 4% slower, using 7% less memory for mako. 6% slower, using 5% less memory for richards.
msg157466 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2012年04月04日 11:34
> I'm not bothered by the regression in "silent_logging",
> as it is a micro benchmark with a very short running time.
I'm not concerned about the micro-benchmark itself but the fact that it
might hint at a wider problem.
Also, I don't get your remark about it running in a short time. Your
patch AFAICT doesn't need any warm up period to exhibit any
improvements.
> Reducing the method-cache size from 2**10 to 2**9 allows the working
> set to fit better in the cache.
> This fixes the regression in "mako", but makes OO programs that use
> few objects (such as richards) a bit slower.
I don't think we should reduce the size of the method cache. 1024 is not
a very large number, and might even be too small for complex OO
programs.
I also think that, apart from the dict storage changes, your patch
should strive not to change any other tunables. Otherwise we're really
comparing apples to oranges.
msg157477 - (view) Author: Mark Shannon (Mark.Shannon) * (Python committer) Date: 2012年04月04日 13:46
Antoine Pitrou wrote:
> Antoine Pitrou <pitrou@free.fr> added the comment:
> 
>> I'm not bothered by the regression in "silent_logging",
>> as it is a micro benchmark with a very short running time.
> 
> I'm not concerned about the micro-benchmark itself but the fact that it
> might hint at a wider problem.
Or it might not.
Micro-benchmarks produce micro-optimisations.
That's why I dislike them.
> Also, I don't get your remark about it running in a short time. Your
> patch AFAICT doesn't need any warm up period to exhibit any
> improvements.
What I mean is that the runtime is so short, no one would notice any
change, so who cares?
> 
>> Reducing the method-cache size from 2**10 to 2**9 allows the working
>> set to fit better in the cache.
>> This fixes the regression in "mako", but makes OO programs that use
>> few objects (such as richards) a bit slower.
> 
> I don't think we should reduce the size of the method cache. 1024 is not
> a very large number, and might even be too small for complex OO
> programs.
"not very large" or "too small", by what metric?
The optimum size (for speed) of the method cache depends on the size of 
hardware data cache, the complexity of the program, and many other factors.
Attempt to reason about it are pretty much futile.
Empiricism is the only way to go.
> 
> I also think that, apart from the dict storage changes, your patch
> should strive not to change any other tunables. Otherwise we're really
> comparing apples to oranges.
If the implementation changes, shouldn't the tunable parameters be retuned?
Cheers,
Mark.
msg157482 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2012年04月04日 14:33
> > Also, I don't get your remark about it running in a short time. Your
> > patch AFAICT doesn't need any warm up period to exhibit any
> > improvements.
> 
> What I mean is that the runtime is so short, no one would notice any
> change, so who cares?
None of the benchmarks used here are real-world workloads, so you might
as well claim that they are all irrelevant. But then we'll have a hard
time assessing the consequences of your patch.
> > I don't think we should reduce the size of the method cache. 1024 is not
> > a very large number, and might even be too small for complex OO
> > programs.
> 
> "not very large" or "too small", by what metric?
By the metric of the number of classes and methods in a complex OO
application (for example something based on Twisted or SQLAlchemy).
> > I also think that, apart from the dict storage changes, your patch
> > should strive not to change any other tunables. Otherwise we're really
> > comparing apples to oranges.
> 
> If the implementation changes, shouldn't the tunable parameters be retuned?
Only if there's a reasoning behind it. Perhaps the retuning would have
given the same results without the rest of your patch.
msg157500 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2012年04月04日 19:47
[Antoine]
>I also think that, apart from the dict storage changes, 
> your patch should strive not to change any other tunables. 
I agree. Please keep the patch focused on the single task, the shared keys.
msg157649 - (view) Author: Mark Shannon (Mark.Shannon) * (Python committer) Date: 2012年04月06日 07:58
How about changing the method-cache size in a separate patch?
On my machine, reducing the method-cache size from 2**10 to 2**9 results
in a very small improvement in performance (with the original dict). 
That way we don't get a performance regression with the new dict 
and the patch is better focussed.
msg158051 - (view) Author: Mark Shannon (Mark.Shannon) * (Python committer) Date: 2012年04月11日 16:40
I don't really understand your objection to changing the method-cache size. As I said, I can remove the change, but that will cause the performance regression that Antoine noticed.
msg158192 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2012年04月13日 01:49
Moving the "assigned to" to "nobody". I won't have a chance for a thorough review for another ten days. Hopefully, someone else will have a chance to review it before then.
msg158723 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2012年04月19日 12:36
Mark, can you please submit a contributor form?
msg159018 - (view) Author: Mark Shannon (Mark.Shannon) * (Python committer) Date: 2012年04月23日 13:59
I've updated the repository and uploaded a new patch in response to Benjamin's review. (And the contributor form is in the post).
One remaining issue is the return value of __sizeof__().
If it is an int, then it cannot accurately reflect the memory use,
but returning a float may seem rather surprising.
msg159028 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2012年04月23日 15:24
New changeset 6e5855854a2e by Benjamin Peterson in branch 'default':
Implement PEP 412: Key-sharing dictionaries (closes #13903)
http://hg.python.org/cpython/rev/6e5855854a2e 
msg159031 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2012年04月23日 15:28
Okay. I committed the latest patch. Subtleties like __sizeof__ can be worked out as people start using it.
msg159032 - (view) Author: Yury Selivanov (Yury.Selivanov) * Date: 2012年04月23日 15:41
Mark, did you add the test that your patch initially was failing with? http://mail.python.org/pipermail/python-dev/2012-February/116605.html 
msg159049 - (view) Author: Mark Shannon (Mark.Shannon) * (Python committer) Date: 2012年04月23日 17:34
I fixed it back then, but didn't add the test.
It subsequently regressed.
Should know better.
Patch (with test this time) attached.
msg159055 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2012年04月23日 17:50
New changeset 34b6998efd2c by Benjamin Peterson in branch 'default':
fix instance dicts with str subclasses (#13903)
http://hg.python.org/cpython/rev/34b6998efd2c 
msg159139 - (view) Author: Mark Shannon (Mark.Shannon) * (Python committer) Date: 2012年04月24日 13:25
Failing to maintain GC tracking in setdefault and copy (for split-tables)
Patch attached
msg159143 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2012年04月24日 14:34
New changeset 507a6703d6a3 by Benjamin Peterson in branch 'default':
fix dict gc tracking (#13903)
http://hg.python.org/cpython/rev/507a6703d6a3 
msg159161 - (view) Author: Mark Shannon (Mark.Shannon) * (Python committer) Date: 2012年04月24日 15:37
Failed to differentiate between failure and error in make_split_table().
Patch attached
msg159172 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2012年04月24日 17:14
New changeset b044e0568be2 by Martin v. Loewis in branch 'default':
Account for shared keys in type's __sizeof__ (#13903).
http://hg.python.org/cpython/rev/b044e0568be2 
msg159188 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2012年04月24日 18:44
New changeset 5d5b72a71898 by Benjamin Peterson in branch 'default':
distiguish between refusing to creating shared keys and error (#13903)
http://hg.python.org/cpython/rev/5d5b72a71898 
msg159478 - (view) Author: Mark Shannon (Mark.Shannon) * (Python committer) Date: 2012年04月27日 17:01
Decref cached-keys when type is deallocated.
Patch attached.
msg159484 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2012年04月27日 19:07
New changeset a3beae842f13 by Benjamin Peterson in branch 'default':
decref cached keys on type deallocation (#13903)
http://hg.python.org/cpython/rev/a3beae842f13 
msg159485 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2012年04月27日 19:08
> New changeset a3beae842f13 by Benjamin Peterson in branch 'default':
> decref cached keys on type deallocation (#13903)
> http://hg.python.org/cpython/rev/a3beae842f13
Is there any way to detect / avoid leaks on this separate refcounting
scheme?
msg159489 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2012年04月27日 20:00
This patch integrates the dictkeys' refcounting into the refcount checking framework. Seems to work ok, but it would be better if someone more acquainted with the code could confirm it.
msg159683 - (view) Author: Mark Shannon (Mark.Shannon) * (Python committer) Date: 2012年04月30日 09:14
Change insertdict to follow normal (non-stealing) ref-counting behaviour which fixes possible leakage.
Patch attached.
msg159698 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2012年04月30日 14:23
New changeset c5fd332e5857 by Benjamin Peterson in branch 'default':
change insertdict to not steal references (#13903)
http://hg.python.org/cpython/rev/c5fd332e5857 
msg160496 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2012年05月12日 21:52
New changeset 10e8b97d0fd7 by Antoine Pitrou in branch 'default':
Make the reference counting of dictkeys objects participate in refleak hunting
http://hg.python.org/cpython/rev/10e8b97d0fd7 
History
Date User Action Args
2022年04月11日 14:57:26adminsetgithub: 58111
2012年05月12日 21:52:57python-devsetmessages: + msg160496
2012年05月02日 17:09:34benjamin.petersonsetstatus: open -> closed
resolution: fixed
2012年04月30日 14:23:52python-devsetmessages: + msg159698
2012年04月30日 09:14:53Mark.Shannonsetfiles: + insertdict.patch

messages: + msg159683
2012年04月27日 20:00:25pitrousetfiles: + dkdebug.patch

messages: + msg159489
2012年04月27日 19:08:33pitrousetmessages: + msg159485
2012年04月27日 19:07:42python-devsetmessages: + msg159484
2012年04月27日 17:01:37Mark.Shannonsetfiles: + cached_keys.patch

messages: + msg159478
2012年04月24日 18:44:25python-devsetmessages: + msg159188
2012年04月24日 17:14:39python-devsetmessages: + msg159172
2012年04月24日 16:06:07giampaolo.rodolasetnosy: - giampaolo.rodola
2012年04月24日 15:37:48Mark.Shannonsetfiles: + make_split_table_error.patch

messages: + msg159161
2012年04月24日 14:34:01python-devsetmessages: + msg159143
2012年04月24日 13:25:21Mark.Shannonsetfiles: + gc_tracking.patch

messages: + msg159139
2012年04月23日 17:50:14python-devsetmessages: + msg159055
2012年04月23日 17:34:33Mark.Shannonsetstatus: closed -> open
files: + str_subclass.patch
resolution: fixed -> (no value)
messages: + msg159049
2012年04月23日 15:41:31Yury.Selivanovsetmessages: + msg159032
2012年04月23日 15:28:03benjamin.petersonsetmessages: + msg159031
2012年04月23日 15:24:58python-devsetstatus: open -> closed

nosy: + python-dev
messages: + msg159028

resolution: fixed
stage: patch review -> resolved
2012年04月23日 13:59:47Mark.Shannonsetmessages: + msg159018
2012年04月23日 13:50:26Mark.Shannonsetfiles: + 73423916a242.diff
2012年04月19日 12:36:14loewissetnosy: + loewis
messages: + msg158723
2012年04月13日 01:49:13rhettingersetassignee: rhettinger ->
messages: + msg158192
2012年04月12日 15:47:27Yury.Selivanovsetnosy: + Yury.Selivanov
2012年04月11日 16:40:38Mark.Shannonsetmessages: + msg158051
2012年04月06日 07:58:03Mark.Shannonsetmessages: + msg157649
2012年04月04日 19:47:08rhettingersetmessages: + msg157500
2012年04月04日 14:33:04pitrousetmessages: + msg157482
2012年04月04日 13:46:04Mark.Shannonsetmessages: + msg157477
2012年04月04日 11:34:05pitrousetmessages: + msg157466
2012年04月02日 15:21:12Mark.Shannonsetmessages: + msg157365
2012年04月02日 11:16:50Mark.Shannonsetfiles: + 372d0bca85ae.diff
2012年03月16日 22:47:46pitrousetmessages: + msg156096
2012年03月09日 17:30:28Jim.Jewettsetmessages: + msg155248
2012年03月09日 17:13:19Jim.Jewettsetmessages: + msg155246
2012年03月09日 10:12:34Mark.Shannonsetfiles: + 257e16e71654.diff
2012年02月29日 16:24:26Mark.Shannonsetmessages: + msg154645
2012年02月29日 15:15:36Jim.Jewettsetnosy: + Jim.Jewett
messages: + msg154637
2012年02月28日 13:06:00Mark.Shannonsetfiles: + 49b7e7e4a27c.diff
2012年02月13日 15:23:21Mark.Shannonsetfiles: - e50db1b7ad7b.diff
2012年02月13日 15:21:34Mark.Shannonsetfiles: + 691ce331f955.diff
2012年02月09日 11:18:43Mark.Shannonsetfiles: - 20702d1acf17.diff
2012年02月09日 11:16:34Mark.Shannonsetfiles: + e50db1b7ad7b.diff
2012年02月08日 16:59:08Mark.Shannonsetfiles: + 20702d1acf17.diff
2012年02月08日 16:58:29Mark.Shannonsetfiles: - bc286099ce9a.diff
2012年02月08日 16:34:53Mark.Shannonsetfiles: + bc286099ce9a.diff
2012年02月08日 16:34:26Mark.Shannonsetfiles: - 1f703b2607af.diff
2012年02月08日 16:34:12Mark.Shannonsetmessages: + msg152885
2012年02月08日 14:37:38pitrousetmessages: + msg152863
2012年02月08日 14:20:23Mark.Shannonsetfiles: + 1f703b2607af.diff
2012年02月08日 14:00:54Mark.Shannonsetfiles: - a9138aba7896.diff
2012年02月08日 13:48:54Mark.Shannonsetfiles: - 6a21f3b35e20.diff
2012年02月08日 13:44:35Mark.Shannonsetfiles: + a9138aba7896.diff
2012年02月08日 13:43:30Mark.Shannonsethgrepos: + hgrepo112
2012年02月06日 16:42:43Mark.Shannonsethgrepos: - hgrepo109
2012年02月01日 00:09:10gregory.p.smithsetmessages: + msg152419
2012年01月31日 13:54:51jceasetnosy: + jcea
2012年01月31日 12:55:32pitrousetmessages: + msg152380
2012年01月31日 10:38:17Mark.Shannonsetmessages: + msg152373
2012年01月31日 02:17:21rhettingersetmessages: + msg152366
2012年01月31日 02:10:33rhettingersetassignee: rhettinger
2012年01月30日 21:26:49Mark.Shannonsetmessages: + msg152351
2012年01月30日 20:22:13rhettingersetnosy: + rhettinger
messages: + msg152345
2012年01月30日 00:42:32jconsetnosy: + jcon
2012年01月30日 00:05:55vstinnersetnosy: + vstinner
messages: + msg152293
2012年01月29日 23:04:35gregory.p.smithsetnosy: + gregory.p.smith
2012年01月29日 19:57:59pjenveysetnosy: + pjenvey
2012年01月29日 19:06:33giampaolo.rodolasetnosy: + giampaolo.rodola
2012年01月29日 18:43:53terry.reedysetnosy: + terry.reedy
messages: + msg152253
2012年01月29日 17:55:10pitrousetnosy: + pitrou, benjamin.peterson
stage: patch review

versions: + Python 3.3, - Python 3.4
2012年01月29日 17:10:29georg.brandlsetfiles: - 061f8573af54.diff
2012年01月29日 17:06:23Mark.Shannonsetfiles: + 6a21f3b35e20.diff
2012年01月29日 14:42:26georg.brandlsetfiles: + 061f8573af54.diff
keywords: + patch
2012年01月29日 14:26:46Mark.Shannoncreate

AltStyle によって変換されたページ (->オリジナル) /