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.
Created on 2010年05月28日 22:53 by benrg, last changed 2022年04月11日 14:57 by admin. This issue is now closed.
| Files | ||||
|---|---|---|---|---|
| File name | Uploaded | Description | Edit | |
| issue8847.diff | skrah, 2012年07月31日 15:42 | review | ||
| issue8847-3.2.diff | skrah, 2012年07月31日 22:09 | review | ||
| issue8847-3.3.diff | skrah, 2012年07月31日 22:12 | review | ||
| Messages (42) | |||
|---|---|---|---|
| msg106695 - (view) | Author: (benrg) | Date: 2010年05月28日 22:53 | |
c:\>python
Python 3.1.2 (r312:79149, Mar 21 2010, 00:41:52) [MSC v.1500 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> from collections import namedtuple
>>> foo = namedtuple('foo', '')
>>> [1] + foo()
At this point the interpreter crashes. Also happens when foo has named arguments, and in batch scripts. foo() + [1] throws a TypeError as expected. [] + foo() returns (). The immediate cause of the crash is the CALL instruction at 1E031D5A in python31.dll jumping into uninitialized memory.
|
|||
| msg106720 - (view) | Author: R. David Murray (r.david.murray) * (Python committer) | Date: 2010年05月29日 14:32 | |
I can't reproduce this on either 3.1.2 or py3k trunk. |
|||
| msg107103 - (view) | Author: Terry J. Reedy (terry.reedy) * (Python committer) | Date: 2010年06月04日 21:22 | |
Running the exact same binary on winxp with an amd athlon processor,
I *did* get a crash after about 5 seconds. "python.exe has encountered a problem and needs to close. We are sorry for the inconvenience."
Trying again with IDLE instead of the command window, I get the same message (for pythonw instead of python) and the shell restarts when I close the message.
Even though foo()+[1] correctly raises a TypeError, the reverse [1] + foo() very bizarrely produces a length 1 tuple whose bizarre member is supposedly an instance of a empty list [] with length 1
from collections import namedtuple
foo = namedtuple('foo', '')
a = [1] + foo()
b=a[0]
print (type(a), len(a), type(b), len(type(b)), type(type(b)))
# <class 'tuple'> 1 [] 1 <class 'list'>
([2]+foo() produces same output)
Other than the above, any attempt to do anything with b or type(b) that I tried crashes. I presume that this is due to attribute lookups on the invalid type(b) (or something like that), which type(b) must bypass. In particular, the OP's crash is due to trying to print the tuple which tries to print its member which looks for type(b).__str__ which crashes.
To anyone: investigating crashers like this is a lot easier with IDLE and an edit window than with the interactive command window.
|
|||
| msg107108 - (view) | Author: Terry J. Reedy (terry.reedy) * (Python committer) | Date: 2010年06月04日 22:51 | |
More experiments
from collections import namedtuple
foo = namedtuple('foo', '')
a = [] + foo()
print (a, type(a), len(a))
# () <class 'tuple'> 0
ie, a standard empty tuple, whereas
a = [1,1] + foo()
crashes immediately. So the behavior of list()+namedtuple depends on the length of the list.
There are also some funny interactions. Adding
try:
a = foo()+[]
except TypeError:
print("correct TypeError")
after the 'foo = ' line in my original 5 line example causes the final print to crash, whereas adding the same 4 lines to the 4 line example at the beginning of this message does not obviously change anything.
David, since you omitted all details, I wonder if you tested in batch mode, as I did, and hence never tried to print the malformed object, or used different OS or hardware.
|
|||
| msg107111 - (view) | Author: Jack Diederich (jackdied) * (Python committer) | Date: 2010年06月04日 23:35 | |
I can't reproduce on 3k trunk with Ubuntu 10.04, gcc 4.4.3 namedtuples are just a subclass of tuple with only two dunder methods defined (a plain __new__ with empty __slots__). Can you provoke the same behavior with plain tuples, or a subclass of tuple that looks like one of these? class Crasher(tuple): pass class Crasher(tuple): __slots__ = () class Crasher(tuple): def __new__(cls,): return tuple.__new__(cls,) __slots__ = () |
|||
| msg107112 - (view) | Author: Terry J. Reedy (terry.reedy) * (Python committer) | Date: 2010年06月04日 23:53 | |
Substituting foo = tuple() TypeError: can only concatenate list (not "tuple") to list class Crasher(tuple): pass foo = Crasher() a = [1] + foo b=a[0] print (type(a), len(a), type(b), len(type(b)), type(type(b))) <class 'tuple'> 1 [] 1 <class 'list'> as before, so namedtuple is not, in particular, the culprit. Other two Crasher versions do the same. I also get a delayed pythonw error message after the print that does not cause the shell to restart. This may partly be an IDLE artifact. |
|||
| msg107115 - (view) | Author: Jack Diederich (jackdied) * (Python committer) | Date: 2010年06月05日 00:37 | |
Two more probes: 1) does it also have the same strange/crashy behavior when you subclass list and concat that to a tuple? 2) does dropping the optimization level down to -O help? This has "compiler quirk" written all over it. The C-code for list and tuple concat are almost identical, and both start with a type check. |
|||
| msg107116 - (view) | Author: Terry J. Reedy (terry.reedy) * (Python committer) | Date: 2010年06月05日 00:39 | |
"can't reproduce" does not inform as to what *did* happen with which code.
More experiments:
foo = str()
TypeError: can only concatenate list (not "str") to list
class s(str): pass
foo = s()
TypeError: Can't convert 'list' object to str implicitly
Why is it trying to do that? Of course, the interpreter can (implicitly) convert list to tuple, which must be what happens in OP example.
The subclasses of tuple and str do not gain an __radd__ method. If we add one
class s(str):
def __radd__(s,o): print('in radd, type(o)')
foo = s()
a = [1] + foo
# prints "in radd <class 'list'>"
no implicit conversion is done.
Reversing tuple and list
class Crasher(list): pass
a = () + Crasher() # or Crasher([1])
print(a, type(a), len(a))
#[] <class 'list'> 0 # or [1] <class 'list'> 1
whereas
a = (1,) + Crasher()
crashes, so not completely symmetrical
|
|||
| msg107117 - (view) | Author: Terry J. Reedy (terry.reedy) * (Python committer) | Date: 2010年06月05日 00:47 | |
1) answered before you asked (yes, similar) 2) (same thought) I am using PSF windows installer, however that was prepared. Martin? |
|||
| msg107119 - (view) | Author: Jack Diederich (jackdied) * (Python committer) | Date: 2010年06月05日 01:31 | |
if the id() of the left operand is identical to the id() of the first element in the result it would strongly support compiler skulldugerry.
class Crasher(tuple): pass
foo = Crasher()
x = [1]
a = x + foo
b=a[0]
if id(b) == id(x):
raise Exception("It's the C compiler what did it!")
The only way I can think of this coming about is the right_op getting new'd and then .extend'ing(left_op). That extend() must be going batsh*t and inserting the left_op instead of it's contained items. The C-code for extend is more fiddly than the code for concatenation so there is more room for the compiler to generate bad code.
|
|||
| msg107120 - (view) | Author: Terry J. Reedy (terry.reedy) * (Python committer) | Date: 2010年06月05日 02:13 | |
Good try, but for one run, the ids of foo, x, a, and b are >>> 15719440 15717880 15273104 12266976 |
|||
| msg107124 - (view) | Author: Martin v. Löwis (loewis) * (Python committer) | Date: 2010年06月05日 07:33 | |
The binaries get compiled with the PGInstrument/PGUpdate configurations. |
|||
| msg107147 - (view) | Author: Matthew Barnett (mrabarnett) * (Python triager) | Date: 2010年06月05日 16:21 | |
I've just found that: [1] + foo() crashes, but: [1].__add__(foo()) gives: Traceback (most recent call last): File "<pyshell#25>", line 1, in <module> [1].__add__(foo()) TypeError: can only concatenate list (not "foo") to list (IDLE on Windows XP) |
|||
| msg130233 - (view) | Author: (benrg) | Date: 2011年03月07日 07:21 | |
The bug is still present in 3.2. |
|||
| msg166907 - (view) | Author: Antoine Pitrou (pitrou) * (Python committer) | Date: 2012年07月30日 15:54 | |
For some reasons I was able to reproduce under 64-bit Windows with the 3.3b1 official build, but neither with my own VS9.0-compiled build, nor with the 3.2 official build. To reproduce: >>> class T(tuple): pass ... >>> t = T((1,2)) >>> [] + t (1, 2) >>> [3,] + t # crash I tried to use the debugging symbols but it doesn't help a lot. The primary issue seems to be that the concatenation doesn't raise TypeError, and instead constructs an invalid object which then makes PyObject_Repr() crash. Also, it is not the Python compiler, the same thing happens with constructor calls: >>> list() + T([1,2]) (1, 2) >>> list((3,)) + T([1,2]) # crash And no it doesn't happen with list subclasses: >>> class L(list): pass ... >>> class T(tuple): pass ... >>> L([]) + T([1,2]) Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: can only concatenate list (not "T") to list >>> [] + T([1,2]) (1, 2) Also, directly calling the __add__ method doesn't trigger the issue, but operator.add does: >>> l + T([1,2]) (1, 2) >>> operator.add(list(), T([1,2])) (1, 2) >>> list().__add__(T([1,2])) Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: can only concatenate list (not "T") to list |
|||
| msg166908 - (view) | Author: Antoine Pitrou (pitrou) * (Python committer) | Date: 2012年07月30日 16:30 | |
The exact same issue happens when concatenating a list subclass to a tuple: >>> () + L([1,2]) [1, 2] >>> (3,) + L([1,2]) # crash Also, note that in this case a list is returned, not a tuple despite the first operand being a tuple. Conversely: >>> [] + T((1,2)) (1, 2) A tuple is returned, not a list. Which is exactly what happens when calling T.__add__: >>> T.__add__((), T((1,2))) (1, 2) My intuition is that the issue is somewhere in binary_op1() (called by PyNumber_Add) in abstract.c. I can't go much further since my own builds don't exhibit the issue. (in the end, chances are it's a MSVC compiler bug) |
|||
| msg166909 - (view) | Author: Georg Brandl (georg.brandl) * (Python committer) | Date: 2012年07月30日 16:34 | |
Raising priority. This should be investigated properly before 3.3 final. |
|||
| msg166929 - (view) | Author: Stefan Krah (skrah) * (Python committer) | Date: 2012年07月30日 22:01 | |
I can reproduce this exclusively with the pgupdate build:
msbuild PCbuild\pcbuild.sln /p:Configuration=PGInstrument /p:Platform=win32
msbuild PCbuild\pcbuild.sln /p:Configuration=PGUpdate /p:Platform=win32
PCbuild\Win32-pgo\python.exe
Python 3.3.0b1 (default, Jul 30 2012, 23:45:42) [MSC v.1600 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> from collections import namedtuple
>>> foo = namedtuple('foo', '')
>>> [1] + foo()
Interpreter exits silently here. So it could be either an optimizer
bug or it's a Python bug exposed by the optimizer making draconian
assumptions at the highest level (c.f. clang exposing overflows).
|
|||
| msg166935 - (view) | Author: STINNER Victor (vstinner) * (Python committer) | Date: 2012年07月31日 00:08 | |
When Python is compiled by Visual Studio 10 in PGUpdate mode, duplicated functions are merged to become the same unique function. The C code of wrap_binaryfunc() and wrap_binaryfunc_l() functions is the same and so both functions get the same address. For "class List(list): pass", type_new() fills type->tp_as_number->nb_add to list_concat() because "d->d_base->wrapper == p->wrapper" is True whereas it should be False (wrap_binaryfunc vs wrap_binaryfunc_l). A workaround is to use a different code for wrap_binaryfunc() and wrap_binaryfunc_l(). A real fix is to use something else than the address of the wrapper to check the type of the operator (left, right, or the 3rd type). |
|||
| msg166936 - (view) | Author: Alyssa Coghlan (ncoghlan) * (Python committer) | Date: 2012年07月31日 00:17 | |
Nice detective work, Victor. Can we turn that particular optimisation off? We use function addresses for identification purposes in many more places than just this one. Having the compiler merge different pointers just because the functions happen to have the same implementation is simply *not cool* from the point of view of the CPython code base. |
|||
| msg166942 - (view) | Author: Meador Inge (meador.inge) * (Python committer) | Date: 2012年07月31日 01:36 | |
Nice work Victor. > Can we turn that particular optimisation off? /OPT:NOICF is probably what we are looking for [1]: """ /OPT:ICF can result in the same address being assigned to different functions or read only data members (const variables compiled with /Gy). So, /OPT:ICF can break a program that depends on the address of functions or read-only data members being different. See /Gy (Enable Function-Level Linking) for more information. """ Now it makes sense that this only crops up with the PGO builds -- those are the only ones where we link with /OPT:ICF. Can someone try out this option? I would, but I don't have a Windows box handy. [1] http://msdn.microsoft.com/en-us/library/bxwfs976.aspx |
|||
| msg166943 - (view) | Author: Martin v. Löwis (loewis) * (Python committer) | Date: 2012年07月31日 01:46 | |
> Having the compiler merge different pointers just because the functions > happen to have the same implementation is simply *not cool* from the > point of view of the CPython code base. I believe the compiler is completely entitled to do so according to the C language definition. There is no guarantee that two different functions have two different addresses as long as calling the function pointer does the same thing according to the as-if rule. So we really need to fix Python, not work-around in the compiler. There may be many more compilers which use the same optimisation. Python relying on undefined behavior is simply *not cool*. |
|||
| msg166946 - (view) | Author: Martin v. Löwis (loewis) * (Python committer) | Date: 2012年07月31日 01:56 | |
OTOH, 6.5.9p6 says "Two pointers compare equal if and only if both are null pointers, both are pointers to the same object (including a pointer to an object and a subobject at its beginning) or function [...]" This is probably meant to imply that pointers to different functions must not compare equal. So if this is determined to be a compiler bug, the most natural conclusion is to stop using PGI/PGO entirely. |
|||
| msg166954 - (view) | Author: Meador Inge (meador.inge) * (Python committer) | Date: 2012年07月31日 03:27 | |
> This is probably meant to imply that pointers to different functions must > not compare equal. I think so. Also, in our case the functions have different names, therefore they can't be the "same" function. > So if this is determined to be a compiler bug, the most natural conclusion > is to stop using PGI/PGO entirely. I think it is non-conformant behavior. Microsoft warns about it in their documentation, but they don't go as far to say it is non-conformant. Also, this isn't really a problem with PGO. AFAICT, it is the COMDAT folding optimization in the linker. That optimization just happens to be enabled on our PGO configurations. Do we even use PGO to the fullest extent? Does someone actually build an instrumented Python, run training inputs on it, and then rebuild with the training data to take advantage of the profile-guided optimizations? If not, then I doubt PGO is buying us anything anyway. Also, PGO is only available on the Premium and Ultimate versions of VC++ [1]. I noticed when building with VC++ 2010 Express on the PGI/PGO builds that it warns about PGO not being available. I don't know what version we build our Python release bits with. [1] http://msdn.microsoft.com/en-us/library/hs24szh9.aspx |
|||
| msg166964 - (view) | Author: STINNER Victor (vstinner) * (Python committer) | Date: 2012年07月31日 07:10 | |
> I noticed when building with VC++ 2010 Express on the PGI/PGO > builds that it warns about PGO not being available. Even if PGO is not available, wrap_binaryfunc() and wrap_binaryfunc_l() functions get the same address when Python is compiled in "PGUpdate" mode. (I tried Visual C++ 2010 Express). The issue was seen at least with the following versions: Python 3.1.2 (r312:79149, Mar 21 2010, 00:41:52) [MSC v.1500 32 bit (Intel)] on win32 Python 3.2 (which version exactly?) Python 3.3b.01, MSVC v16.00 64 bits (AMD 64) on win32 So the issue was also reproduced with old Python versions compiled with Visual C++ 2008, and I'm not sure that the "ICF" optimization is only enabled in "Profile-Guided" (PG*) modes. If we choose to change Visual Studio options instead of changing the mode, we may also try /Gy- option: http://msdn.microsoft.com/en-us/library/xsa71f43.aspx |
|||
| msg166969 - (view) | Author: Martin v. Löwis (loewis) * (Python committer) | Date: 2012年07月31日 07:38 | |
> Do we even use PGO to the fullest extent? Does someone actually build an > instrumented Python, run training inputs on it, and then rebuild with the > training data to take advantage of the profile-guided optimizations? Yes, I do, on every release of Python. The test set includes at the minimum "Tools\pybench\pybench.py -n1 -C1 --with-gc". I used to also include "Lib\test\regrtest.py". Now, some recently added tests have slowed this down so much that this is not feasible anymore in PGI mode. This issue wouldn't have been reported in the first place if this feature wasn't used; see also msg107124. I don't mind just not doing it anymore; it speeds up the release process. > If not, then I doubt PGO is buying us anything anyway. It was originally added because people reported measurable speedups when profile-guided optimization is used, for VS 2008. > I noticed when building with VC++ 2010 Express on the PGI/PGO builds that it > warns about PGO not being available. I don't know what version we build our > Python release bits with. I do, of course, have at least a professional edition of Visual Studio to make the Python releases available from www.python.org. More specifically, my VS 2008 installation is "Professional"; my VS 2010 installation is "Ultimate". |
|||
| msg166971 - (view) | Author: Stefan Krah (skrah) * (Python committer) | Date: 2012年07月31日 07:50 | |
Martin v. L??wis <report@bugs.python.org> wrote: > > If not, then I doubt PGO is buying us anything anyway. > > It was originally added because people reported measurable speedups when > profile-guided optimization is used, for VS 2008. For libmpdec/64-bit I've measured huge speedups in the order of 50% (with training data). This led me to believe that the main optimizations for x64 are only available with PGO, perhaps as a distinguishing feature from the Express versions. |
|||
| msg167009 - (view) | Author: Stefan Krah (skrah) * (Python committer) | Date: 2012年07月31日 15:42 | |
Here's a patch based on the analysis. All test cases given here now raise TypeError. |
|||
| msg167026 - (view) | Author: Terry J. Reedy (terry.reedy) * (Python committer) | Date: 2012年07月31日 18:29 | |
I presume the previously crashing test cases should be added to the test suite, to detect reversion. Is there a method (faulthandler?) to keep tests going, or stop gracefully, when adding a once-crasher that could revert? |
|||
| msg167033 - (view) | Author: Antoine Pitrou (pitrou) * (Python committer) | Date: 2012年07月31日 19:33 | |
> Here's a patch based on the analysis. All test cases given here > now raise TypeError. I think we want to add those tests to the test suite as well. |
|||
| msg167036 - (view) | Author: Stefan Krah (skrah) * (Python committer) | Date: 2012年07月31日 19:46 | |
Antoine Pitrou <report@bugs.python.org> wrote: > I think we want to add those tests to the test suite as well. What's a good place? Shall we just add one of the tests to test_tuple? Also, the only person to run the tests with the PGO build will probably be Martin just before the releases. :) |
|||
| msg167037 - (view) | Author: Antoine Pitrou (pitrou) * (Python committer) | Date: 2012年07月31日 19:48 | |
> Antoine Pitrou <report@bugs.python.org> wrote: > > I think we want to add those tests to the test suite as well. > > What's a good place? Shall we just add one of the tests to test_tuple? Sounds good. And another of them to test_list perhaps as well :) > Also, the only person to run the tests with the PGO build will probably > be Martin just before the releases. :) True, but other people may still run them *after* the release. |
|||
| msg167057 - (view) | Author: Stefan Krah (skrah) * (Python committer) | Date: 2012年07月31日 22:09 | |
New patches with tests for 3.2 and 3.3. For 3.2 I determined empirically that EnableCOMDATFolding="1" (and not "0") turns on NOICF. If anyone can confirm that this is the case or has a pointer to the relevant vcproj docs, I'd be thrilled. |
|||
| msg167062 - (view) | Author: Martin v. Löwis (loewis) * (Python committer) | Date: 2012年07月31日 22:39 | |
> Also, the only person to run the tests with the PGO build will probably > be Martin just before the releases. :) We could set up a buildbot slave which does PGO builds, provided somebody volunteered an installation (including VS Pro), and somebody contributed a build script that deviates from the regular build (perhaps including some training on the PGI). This is a separate issue, of course. |
|||
| msg167063 - (view) | Author: Martin v. Löwis (loewis) * (Python committer) | Date: 2012年07月31日 22:43 | |
> If anyone can confirm that this is the case or has a pointer to > the relevant vcproj docs, I'd be thrilled. http://msdn.microsoft.com/de-de/library/microsoft.visualstudio.vcprojectengine.vclinkertool.enablecomdatfolding(v=vs.90).aspx http://msdn.microsoft.com/de-de/library/microsoft.visualstudio.vcprojectengine.optfoldingtype(v=vs.90).aspx While the actual values for the XML schema aren't documented, I expect that they have the numeric values that they have in C++ (i.e. optFoldingDefault=0, optNoFolding=1, optFolding=2) To confirm, just look up the setting in the UI. |
|||
| msg167098 - (view) | Author: Roundup Robot (python-dev) (Python triager) | Date: 2012年08月01日 08:06 | |
New changeset 5a8c5631463f by Martin v. Löwis in branch '2.7': Issue #8847: Disable COMDAT folding in Windows PGO builds. http://hg.python.org/cpython/rev/5a8c5631463f |
|||
| msg167100 - (view) | Author: Roundup Robot (python-dev) (Python triager) | Date: 2012年08月01日 09:11 | |
New changeset 2638ce032151 by Martin v. Löwis in branch '3.2': Issue #8847: Disable COMDAT folding in Windows PGO builds. http://hg.python.org/cpython/rev/2638ce032151 New changeset 029cde4e58c5 by Martin v. Löwis in branch 'default': Issue #8847: Disable COMDAT folding in Windows PGO builds. http://hg.python.org/cpython/rev/029cde4e58c5 New changeset d3afe5d8a4da by Martin v. Löwis in branch 'default': Issue #8847: Merge with 3.2 http://hg.python.org/cpython/rev/d3afe5d8a4da |
|||
| msg167101 - (view) | Author: Martin v. Löwis (loewis) * (Python committer) | Date: 2012年08月01日 09:13 | |
Thanks for the research and the fix! |
|||
| msg167106 - (view) | Author: STINNER Victor (vstinner) * (Python committer) | Date: 2012年08月01日 09:29 | |
You didn't add any test for non regression?? |
|||
| msg167111 - (view) | Author: Martin v. Löwis (loewis) * (Python committer) | Date: 2012年08月01日 10:17 | |
> You didn't add any test for non regression?? Please rephrase your question: what tests did I not add? I did add the tests that Stefan proposed. |
|||
| msg167120 - (view) | Author: STINNER Victor (vstinner) * (Python committer) | Date: 2012年08月01日 12:34 | |
> Please rephrase your question: what tests did I not add? > I did add the tests that Stefan proposed. Ah yes, you added new tests to Python 3.2 and 3.3, but no to Python 2.7. Why not adding these new tests to Python 2.7? |
|||
| msg167127 - (view) | Author: Martin v. Löwis (loewis) * (Python committer) | Date: 2012年08月01日 13:32 | |
> Ah yes, you added new tests to Python 3.2 and 3.3, but no to Python > 2.7. Why not adding these new tests to Python 2.7? The tests don't crash Python 2.7. So they are not useful as a test whether the bug has been worked-around. I actually don't know how to test this compiler bug in Python 2.7 (except for writing specific C code that tries to trigger the bug). |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:57:01 | admin | set | github: 53093 |
| 2012年08月01日 13:32:32 | loewis | set | messages: + msg167127 |
| 2012年08月01日 12:34:46 | vstinner | set | messages: + msg167120 |
| 2012年08月01日 10:17:34 | loewis | set | messages: + msg167111 |
| 2012年08月01日 09:29:51 | vstinner | set | messages: + msg167106 |
| 2012年08月01日 09:13:02 | loewis | set | status: open -> closed resolution: fixed messages: + msg167101 |
| 2012年08月01日 09:11:09 | python-dev | set | messages: + msg167100 |
| 2012年08月01日 08:06:37 | python-dev | set | nosy:
+ python-dev messages: + msg167098 |
| 2012年08月01日 00:18:34 | jcea | set | nosy:
+ jcea |
| 2012年07月31日 22:43:56 | loewis | set | messages: + msg167063 |
| 2012年07月31日 22:39:18 | loewis | set | messages: + msg167062 |
| 2012年07月31日 22:12:40 | skrah | set | files: + issue8847-3.3.diff |
| 2012年07月31日 22:12:04 | skrah | set | files: - issue8847-3.3.diff |
| 2012年07月31日 22:09:47 | skrah | set | files: + issue8847-3.2.diff |
| 2012年07月31日 22:09:27 | skrah | set | files:
+ issue8847-3.3.diff messages: + msg167057 |
| 2012年07月31日 19:48:20 | pitrou | set | messages: + msg167037 |
| 2012年07月31日 19:46:56 | skrah | set | messages: + msg167036 |
| 2012年07月31日 19:33:38 | pitrou | set | messages: + msg167033 |
| 2012年07月31日 18:29:54 | terry.reedy | set | messages: + msg167026 |
| 2012年07月31日 15:42:10 | skrah | set | files:
+ issue8847.diff keywords: + patch messages: + msg167009 |
| 2012年07月31日 07:50:39 | skrah | set | messages: + msg166971 |
| 2012年07月31日 07:38:44 | loewis | set | messages: + msg166969 |
| 2012年07月31日 07:10:46 | vstinner | set | messages: + msg166964 |
| 2012年07月31日 03:27:53 | meador.inge | set | messages: + msg166954 |
| 2012年07月31日 01:56:07 | loewis | set | messages: + msg166946 |
| 2012年07月31日 01:46:07 | loewis | set | messages: + msg166943 |
| 2012年07月31日 01:36:03 | meador.inge | set | nosy:
+ meador.inge messages: + msg166942 |
| 2012年07月31日 00:17:55 | ncoghlan | set | messages: + msg166936 |
| 2012年07月31日 00:08:57 | vstinner | set | nosy:
+ vstinner messages: + msg166935 |
| 2012年07月30日 22:01:21 | skrah | set | nosy:
+ skrah messages: + msg166929 |
| 2012年07月30日 20:39:52 | alex | set | nosy:
+ alex |
| 2012年07月30日 16:56:07 | terry.reedy | set | nosy:
+ ncoghlan |
| 2012年07月30日 16:34:28 | georg.brandl | set | priority: high -> deferred blocker nosy: + georg.brandl messages: + msg166909 |
| 2012年07月30日 16:30:56 | pitrou | set | nosy:
+ amaury.forgeotdarc messages: + msg166908 |
| 2012年07月30日 15:54:31 | pitrou | set | nosy:
+ pitrou, tim.golden, brian.curtin messages: + msg166907 |
| 2012年07月30日 15:03:39 | ishimoto | set | nosy:
+ ishimoto |
| 2011年06月12日 22:22:17 | terry.reedy | set | versions: - Python 3.1 |
| 2011年03月07日 10:11:01 | eric.araujo | set | nosy:
+ rhettinger versions: + Python 3.3 |
| 2011年03月07日 07:21:35 | benrg | set | nosy:
loewis, terry.reedy, jackdied, eric.araujo, mrabarnett, r.david.murray, benrg messages: + msg130233 versions: + Python 3.2 |
| 2010年12月22日 08:35:52 | eric.araujo | set | nosy:
+ eric.araujo |
| 2010年06月05日 16:21:54 | mrabarnett | set | nosy:
+ mrabarnett messages: + msg107147 |
| 2010年06月05日 07:33:31 | loewis | set | messages: + msg107124 |
| 2010年06月05日 02:13:02 | terry.reedy | set | messages: + msg107120 |
| 2010年06月05日 01:31:55 | jackdied | set | messages: + msg107119 |
| 2010年06月05日 00:47:26 | terry.reedy | set | nosy:
+ loewis messages: + msg107117 |
| 2010年06月05日 00:39:33 | terry.reedy | set | messages: + msg107116 |
| 2010年06月05日 00:37:15 | jackdied | set | messages: + msg107115 |
| 2010年06月04日 23:53:51 | terry.reedy | set | messages: + msg107112 |
| 2010年06月04日 23:35:08 | jackdied | set | messages: + msg107111 |
| 2010年06月04日 22:51:29 | terry.reedy | set | messages: + msg107108 |
| 2010年06月04日 21:31:05 | rhettinger | set | priority: normal -> high |
| 2010年06月04日 21:30:42 | jackdied | set | nosy:
+ jackdied |
| 2010年06月04日 21:22:20 | terry.reedy | set | resolution: works for me -> (no value) messages: + msg107103 nosy: + terry.reedy |
| 2010年05月29日 14:32:37 | r.david.murray | set | resolution: works for me messages: + msg106720 nosy: + r.david.murray |
| 2010年05月28日 22:53:45 | benrg | create | |