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: Support for SEEK_HOLE/SEEK_DATA
Type: enhancement Stage: resolved
Components: IO, Library (Lib) Versions: Python 3.3
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: jcea Nosy List: aklauer, amaury.forgeotdarc, benjamin.peterson, georg.brandl, jcea, loewis, pitrou, python-dev, rhettinger, skrah, terry.reedy, vstinner
Priority: normal Keywords: easy, patch

Created on 2010年10月19日 03:15 by jcea, last changed 2022年04月11日 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
3f967e00e267.diff jcea, 2012年04月18日 15:00 review
0a5a40a4674a.diff jcea, 2012年04月24日 19:48 review
ad882ba08568.diff jcea, 2012年04月24日 20:15 review
6447a9323b11.diff jcea, 2012年04月26日 15:25 review
c7abfb4d4260.diff jcea, 2012年04月26日 17:56 review
Repositories containing patches
https://hg.jcea.es/cpython-2011/#seek_hole-issue10142
Messages (54)
msg119112 - (view) Author: Jesús Cea Avión (jcea) * (Python committer) Date: 2010年10月19日 03:15
ZFS supports SEEK_HOLE/SEEK_DATA in "lseek()" syscall.
Oracle Solaris man page por "lseek":
"""
[...]
 o If whence is SEEK_HOLE, the offset of the start of the
 next hole greater than or equal to the supplied offset
 is returned. The definition of a hole is provided near
 the end of the DESCRIPTION.
 o If whence is SEEK_DATA, the file pointer is set to the
 start of the next non-hole file region greater than or
 equal to the supplied offset.
 The symbolic constants SEEK_SET, SEEK_CUR, SEEK_END,
 SEEK_HOLE, and SEEK_DATA are defined in the header
 <unistd.h>.
[...]
 A "hole" is defined as a contiguous range of bytes in a
 file, all having the value of zero, but not all zeros in a
 file are guaranteed to be represented as holes returned with
 SEEK_HOLE. Filesystems are allowed to expose ranges of zeros
 with SEEK_HOLE, but not required to. Applications can use
 SEEK_HOLE to optimise their behavior for ranges of zeros,
 but must not depend on it to find all such ranges in a file.
 The existence of a hole at the end of every data region
 allows for easy programming and implies that a virtual hole
 exists at the end of the file. Applications should use
 fpathconf(_PC_MIN_HOLE_SIZE) or pathconf(_PC_MIN_HOLE_SIZE)
 to determine if a filesystem supports SEEK_HOLE. See fpath-
 conf(2).
 For filesystems that do not supply information about holes,
 the file will be represented as one entire data region.
"""
Implementation would be trivial. Simply conditionally compile the constant export in the C module. Or adopt the approach in the last phrase.
Any novice?.
msg119121 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2010年10月19日 04:58
Martin, any thoughts on adding a ZFS dependent feature? ISTM this Solaris feature hasn't taken hold elsewhere and it may be a mistake to immortalize it in Python.
msg119131 - (view) Author: Jesús Cea Avión (jcea) * (Python committer) Date: 2010年10月19日 10:37
Seems to be adopted too in *bsd: http://manpages.ubuntu.com/manpages/lucid/man2/lseek.2freebsd.html .
The feature has patches available too for Linux, but never integrated in mainline kernel, AFAIK. Googling "SEEK_HOLE" is interesting.
msg119132 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2010年10月19日 10:44
If it's just additional constants then I don't see the problem. We already have a lot of platform-specific constants.
However, it would be a lot better if the io module were made to work properly with these constants, too. There are a lot of places where we hardcode tests such as `whence == SEEK_SET` or even `whence == 0`, and whence values above 2 aren't generally considered.
So the patch is probably a bit less trivial than what you imagine :)
msg119173 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2010年10月19日 22:20
Am 19.10.2010 06:58, schrieb Raymond Hettinger:
> 
> Raymond Hettinger <rhettinger@users.sourceforge.net> added the
> comment:
> 
> Martin, any thoughts on adding a ZFS dependent feature? ISTM this
> Solaris feature hasn't taken hold elsewhere and it may be a mistake
> to immortalize it in Python.
There isn't any specific patch to review yet. However, Python has
a long tradition of exposing all symbolic constants that users have
asked for, and these are no different (e.g. how many systems support
EX_SOFTWARE, or ENOTACTIVE). As long as it's just new constants, and
as long as they are guarded with an ifdef, no approval is necessary
for adding them.
msg119256 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2010年10月21日 01:16
Jesús, can you attach a patch (with the appropriate #ifdefs)?
msg119549 - (view) Author: Jesús Cea Avión (jcea) * (Python committer) Date: 2010年10月25日 13:54
I attach patch. I have reviewed the IO module and I think we don't need to do any change there, since values over 2 are not touched.
The patch is trivial. My plan was to leave this patch for a novice :-).
Please, review. But let me do the final commit (I have commit privileges).
msg119551 - (view) Author: Jesús Cea Avión (jcea) * (Python committer) Date: 2010年10月25日 13:57
[jcea@babylon5 py3k]$ ./python
Python 3.2a3+ (py3k:85834M, Oct 25 2010, 15:37:04)
[GCC 4.5.1] on sunos5
Type "help", "copyright", "credits" or "license" for more information.
>>> import os
>>> os.SEEK_DATA
3
>>> os.SEEK_HOLE
4
>>>
msg119573 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2010年10月25日 19:49
The patch lacks a documentation change. Otherwise, it looks fine.
msg119574 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2010年10月25日 19:53
I think the docs should also make it clear that these flags are only supported by os.lseek() (unless you have tested the IO lib to work properly, that is, but in this case it would be nice to add unit tests).
msg119575 - (view) Author: Jesús Cea Avión (jcea) * (Python committer) Date: 2010年10月25日 20:10
I will update documentation.
Antoine, it is difficult to write a testcase when I can only test under a system with ZFS. I don't think we have a buildbot with Solaris/*BSD and ZFS.
Any suggestion?.
msg119576 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2010年10月25日 20:25
> I will update documentation.
> 
> Antoine, it is difficult to write a testcase when I can only test
> under a system with ZFS. I don't think we have a buildbot with
> Solaris/*BSD and ZFS.
If you ascertain yourself that the test works under ZFS then I think it
is enough. Of course, it would be better if a buildbot ran that test,
but we can live without it (IMHO).
msg119577 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2010年10月25日 20:33
> If you ascertain yourself that the test works under ZFS then I think it
> is enough. Of course, it would be better if a buildbot ran that test,
> but we can live without it (IMHO).
I agree. I trust that the patch is correct, and we really don't need to
test whether ZFS works correctly (but trust that Oracle will).
msg120836 - (view) Author: Jesús Cea Avión (jcea) * (Python committer) Date: 2010年11月09日 02:56
This is far more complicated that expected, because I would like to modify "file.seek()" to be able to support these flags too. Analizing "Modules/_io/bufferedio.c:buffered_seek()", the logic is pretty convoluted and the ramifications are extensible.
Should I limit myself to "os.lseek()"/"os.read()"/"os.write()"?. This flags are obscure, but useful enough to be useful even with this limitation.
Fut I don't feel comfy with this partial support.
msg120934 - (view) Author: Jesús Cea Avión (jcea) * (Python committer) Date: 2010年11月11日 00:28
Please, review this. I had changed IO to support the new flags too. To do it, I must relax error control in IO, a bit.
So, the new flag are supported both in "os.lseek()" and in standard file objects.
Please, Antoine, could you review?.
I have checked the patch manually, but I can't think a way to automate it. We don't have any ZFS machine in buildbot.
I would love to commit this next week. Thanks for your time.
msg120935 - (view) Author: Jesús Cea Avión (jcea) * (Python committer) Date: 2010年11月11日 00:39
"""
>>> import os
>>> f=open("XX","w+b")
>>> f.seek(1024*1024)
1048576
>>> f.write(b"hello")
5
>>> f.seek(1024*1024*2)
2097152
>>> f.write(b"bye")
3
>>> f.seek(0,os.SEEK_HOLE)
0
>>> f.seek(0,os.SEEK_DATA)
1048576
>>> f.seek(1048576,os.SEEK_HOLE)
1179648
>>> f.seek(1179648,os.SEEK_DATA)
2097152
>>> f.seek(2097152,os.SEEK_HOLE)
2097155
>>> fd=f.fileno()
>>> os.lseek(fd,0,os.SEEK_HOLE)
0
>>> os.lseek(fd,0,os.SEEK_DATA)
1048576
>>> os.lseek(fd,1048576,os.SEEK_HOLE)
1179648
>>> os.lseek(fd,1179648,os.SEEK_DATA)
2097152
"""
msg120964 - (view) Author: Amaury Forgeot d'Arc (amaury.forgeotdarc) * (Python committer) Date: 2010年11月11日 18:03
- The patch modifies the _io module but not _pyio, why?
(try f=_pyio.open("XX","w+b") at the beginning of the script above)
- One test was *removed*, but nothing was added to test this new feature.
This is the most likely way to lose it in future versions!
An idea for the test is to do like the MockRawIO class in test_io.py, which "implements" a file but fakes all system calls, and can be wrapped in a BufferedReader.
- The feature seems to be not applicable to text files, this should be tested.
msg121017 - (view) Author: Jesús Cea Avión (jcea) * (Python committer) Date: 2010年11月12日 04:20
Amaury, thanks for your valuable feedback.
1. I forgot about the python implementation. I am not familiar with the new IO framework. Implemented now.
3. These new SEEK modes should not be used in text mode. In my new patch the modes are rejected in text mode, allowed in binary mode.
2. I have spend the last 3 hours studying "test_io.py", and I don't understand the Mock* usage. Your MockRawIO hint is valuable, but I can't think a way to test that C/Python implementation passes the new flags to the OS. If I understand correctly, any method implemented in the Mock will be hit instead of the IO implementation, and anything that reach IO implementation will not go back to the Mock. I don't understand... :-?. Or can you magically insert the Mock between the IO module and the OS?. I know something like this is happening, but I don't understand the mechanism.
How do you choose what Mock* are you using in each test?.
I have read about Mock testing in the past, but I don't understand the use here. Are they actually Mocks, as explained in http://agiletesting.blogspot.com/2009/07/python-mock-testing-techniques-and.html , for example?
Sorry.
Could you provide some hint?. Maybe in python-dev, for more audience?.
I have implemented a test "test_posix", if your OS can report holes in a file (so far modern Solaris/OpenSolaris/OpenIndiana, don't know about *bsd). Other OSs will ignore the test.
I know your time is valuable. Thanking for investing in me.
msg129149 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2011年02月23日 01:31
Jesus, perhaps you can address Amaury's comments by uploading a new patch?
msg156466 - (view) Author: Andreas Klauer (aklauer) Date: 2012年03月20日 21:59
> ZFS supports SEEK_HOLE/SEEK_DATA in "lseek()" syscall.
> The feature has patches available too for Linux, but never integrated in mainline kernel, AFAIK.
> it is difficult to write a testcase when I can only test under a system with ZFS
I don't know if this could help, but recently Linux did get some commits regarding SEEK_HOLE/SEEK_DATA ( e.g. http://git.kernel.org/linus/982d816581eeeacfe5b2b7c6d47d13a157616eff ). I haven't tested whether it works / which filesystems support it. Grepping the Linux sources for SEEK_HOLES gives me several hits, e.g. for btrfs.
msg156469 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2012年03月20日 22:24
+ /* SEEK_SET and SEEK_CUR are special because we could seek inside the
+ buffer. Other whence values must be managed without this optimization.
+ Some Operating Systems can provide additional values, like
+ SEEK_HOLE/SEEK_DATA. */
+ if (((whence == 0) || (whence == 1)) && self->readable) {
Why not using SEEK_SET and SEEK_CUR instead of 0 and 1 here?
+ .. versionadded:: 3.2
This is now outdated, it should be 3.3.
msg158631 - (view) Author: Jesús Cea Avión (jcea) * (Python committer) Date: 2012年04月18日 15:02
Victor, internally Python uses 0, 1 and 2 as wired values independently of the platform values. This is probably an historic accident.
Please, review.
msg158813 - (view) Author: Jesús Cea Avión (jcea) * (Python committer) Date: 2012年04月20日 10:41
I am going to integrate next week
Please, review.
msg158852 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2012年04月20日 17:17
Is there a reason to say (several times) 'can support' instead of just 'support'? Do the OSes in question just optionally support rather than always support?
The first version added: change 'depend of' to 'depend on'.
In several functions you delete error checks:
- if not (0 <= whence <= 2):
- raise ValueError("invalid whence value")
(or C equivalent). What happens with patch if invalid whence value is passed? Error from deeper in the call stack? Silently pass error, with no message?
Could import of io create set of valid_whences for system? Then check would be "if whence not in valid_whences:" (or C equivalent).
In 3.3, unittest has new mock submodule. Perhaps that would help testing.
msg158856 - (view) Author: Jesús Cea Avión (jcea) * (Python committer) Date: 2012年04月20日 17:30
Terry, yes, skiping the test in the code will raise an error anyway when doing the real "seek()" OS syscall.
> Is there a reason to say (several times) 'can support' instead of
> just 'support'? Do the OSes in question just optionally support
> rather than always support?
Sometimes depends of the concrete filesystem used, or the concrete OS version.
> The first version added: change 'depend of' to 'depend on'.
Done in my repository. Thanks.
> Could import of io create set of valid_whences for system?
> Then check would be "if whence not in valid_whences:" (or C
> equivalent).
This is far from trivial and I don't see the point if OS "seek()" is going to give an error anyway. The only point would to provide a maybe more useful error message.
> In 3.3, unittest has new mock submodule. Perhaps that would help
> testing.
This is a very thin layer over the OS.
Thanks for the feedback.
msg158880 - (view) Author: Amaury Forgeot d'Arc (amaury.forgeotdarc) * (Python committer) Date: 2012年04月20日 20:04
> I don't see the point if OS "seek()" is going to give an error anyway.
Please check that Windows won't crash the interpreter with bad 'whence' values, like it already does for closed file descriptors.
msg159197 - (view) Author: Jesús Cea Avión (jcea) * (Python committer) Date: 2012年04月24日 19:51
New version, addressing Amaury concerns and Neologix review.
Please, do a final review.
msg159199 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2012年04月24日 19:57
- In test_posix.py: it's better to use the "with" statement when opening a file
- In Misc/NEWS: the entries should be kept in reverse chronological order
msg159201 - (view) Author: Jesús Cea Avión (jcea) * (Python committer) Date: 2012年04月24日 20:15
Another version, after Antoine feedback.
Please, review.
msg159370 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2012年04月26日 14:39
New changeset 86dc014cdd74 by Jesus Cea in branch 'default':
Close #10142: Support for SEEK_HOLE/SEEK_DATA
http://hg.python.org/cpython/rev/86dc014cdd74 
msg159372 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2012年04月26日 15:04
You broke test_io
www.python.org/dev/buildbot/all/builders/x86 Gentoo Non-Debug 3.x/builds/2143/steps/test/logs/stdio
msg159374 - (view) Author: Jesús Cea Avión (jcea) * (Python committer) Date: 2012年04月26日 15:08
Yes, backing out changeset.
Never suppose anything...
msg159381 - (view) Author: Jesús Cea Avión (jcea) * (Python committer) Date: 2012年04月26日 15:25
New patch proposed, with testsuite fixed.
Please, review. Last chance :-).
msg159408 - (view) Author: Jesús Cea Avión (jcea) * (Python committer) Date: 2012年04月26日 17:57
New patch, after neologix@free.fr review.
msg159696 - (view) Author: Hynek Schlawack (hynek) * (Python committer) Date: 2012年04月30日 14:13
<bikeshed>In some cases you change "invalid" to "unsupported" when encountering an invalid/unsupported `whence' and in others you keep them on "invalid". I find it rather hard to really differentiate these two words in that context; care to shed a light and tell me the thought process behind that?</bikeshed>
msg163431 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2012年06月22日 16:33
New changeset de2a0cb6ba52 by Jesus Cea in branch 'default':
Closes #10142: Support for SEEK_HOLE/SEEK_DATA
http://hg.python.org/cpython/rev/de2a0cb6ba52 
msg163495 - (view) Author: Stefan Krah (skrah) * (Python committer) Date: 2012年06月22日 21:41
Looks like the FreeBSD bot fails in test_posix:
======================================================================
ERROR: test_fs_holes (test.test_posix.PosixTester)
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/usr/home/buildbot/buildarea/3.x.krah-freebsd/build/Lib/test/test_posix.py", line 1033, in test_fs_holes
 self.assertEqual(i, os.lseek(fno, i, os.SEEK_DATA))
OSError: [Errno 25] Inappropriate ioctl for device
----------------------------------------------------------------------
Ran 81 tests in 1.878s
msg163508 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2012年06月23日 00:56
New changeset 13f5a329d5ea by Jesus Cea in branch 'default':
Kernel bug in freebsd9 - #10142: Support for SEEK_HOLE/SEEK_DATA
http://hg.python.org/cpython/rev/13f5a329d5ea 
msg163509 - (view) Author: Jesús Cea Avión (jcea) * (Python committer) Date: 2012年06月23日 00:56
This looks like a bug in freebsd:
http://lists.freebsd.org/pipermail/freebsd-amd64/2012-January/014332.html
Since looks like a kernel bug, skipping test in that case.
Committed patch.
Thanks for the head-up.
msg163511 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2012年06月23日 00:58
New changeset 8acaa341df53 by Jesus Cea in branch 'default':
Skip the test only if neccesary - Kernel bug in freebsd9 - #10142: Support for SEEK_HOLE/SEEK_DATA
http://hg.python.org/cpython/rev/8acaa341df53 
msg163554 - (view) Author: Stefan Krah (skrah) * (Python committer) Date: 2012年06月23日 08:58
> This looks like a bug in freebsd:
> 
> http://lists.freebsd.org/pipermail/freebsd-amd64/2012-January/014332.html
I tested that one already yesterday (it was late, so I forgot to mention
it) and the test case attached to the bug report runs fine on the buildbot:
#include <unistd.h>
#include <fcntl.h>
#include <errno.h>
int main(void)
{
 int fd = open("ccc.c", O_RDONLY);
 off_t offset=lseek(fd,0,SEEK_HOLE);
 if (offset==-1) {
 if (errno==ENXIO) {
 // No more data
 printf("no more data\n");
 close(fd);
 exit(-1);
 }
 }
 return 0;
}
The skip looks good to me though, I wouldn't be surprised if there is a kernel
bug. This bug is still present on my machine:
http://www.freebsd.org/cgi/query-pr.cgi?pr=94729 
msg163559 - (view) Author: Stefan Krah (skrah) * (Python committer) Date: 2012年06月23日 09:19
> int main(void)
> {
> int fd = open("ccc.c", O_RDONLY);
> off_t offset=lseek(fd,0,SEEK_HOLE);
> if (offset==-1) {
> if (errno==ENXIO) {
Darn, the errno in test_posix should be ENOTTY. Indeed, with ENOTTY the
test case for the bug is positive.
msg163593 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2012年06月23日 12:18
The test case is till failing for the freebsd7 buildbot:
http://www.python.org/dev/buildbot/all/builders/x86%20FreeBSD%207.2%203.x/builds/3155/steps/test/logs/stdio 
msg163594 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2012年06月23日 12:20
And the Ubuntu ARM buildbot.
msg163946 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2012年06月25日 11:46
New changeset 814557548af5 by Jesus Cea in branch 'default':
Skip test in freebsd entirely - Kernel bug in freebsd7/8/9 - #10142: Support for SEEK_HOLE/SEEK_DATA
http://hg.python.org/cpython/rev/814557548af5 
msg163952 - (view) Author: Jesús Cea Avión (jcea) * (Python committer) Date: 2012年06月25日 11:55
Stefan, I am confused with your comments. The thing is that freebsd defines SEEK_HOLE/SEEK_DATA but reports an error when you use them. I guess they are errors when used on a filesystem that doesn't support them. This is a bug, in my opinion (if a FS doesn't support them, compatible implementation are trivial).
In the meantime, I am skipping the test completely under freebsd7/8/9. patch just committed.
Testing the patch, but freebsd7 buildbot is really SLOW.
msg163955 - (view) Author: Jesús Cea Avión (jcea) * (Python committer) Date: 2012年06月25日 12:01
Greog, I am confused about ARM ubuntu errors. Do we know what ubuntu version is running there?. What is the filesystem?.
I am seriously thinking about supporting these flags only in "real" OSs like Solaris & derivatives :-)
msg163956 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2012年06月25日 12:01
Jesus, what do you think about removing that test entirely?
IMO it is not our job to verify the OS' proper behavior in the face of SEEK_HOLE/SEEK_DATA; it is enough to provide the constants, and let whoever uses it face the perils of the platform.
msg163957 - (view) Author: Jesús Cea Avión (jcea) * (Python committer) Date: 2012年06月25日 12:05
Georg, I am fine with that if you are fine with that :-). Please, confirm :)
(sorry for mistyping your name before!)
msg163960 - (view) Author: Stefan Krah (skrah) * (Python committer) Date: 2012年06月25日 12:27
Jes??s Cea Avi??n <report@bugs.python.org> wrote:
> Stefan, I am confused with your comments.
The FreeBSD bug report you linked to had a test case attached. The test case
uses errno == ENXIO. I could not reproduce the failure, so in my *first* comment
I questioned whether the failures in test_posix were caused by that particular
bug.
Then I noticed that the test_posix traceback shows errno == 25 == ENOTTY.
So I ran the test case with errno == ENOTTY and I *could* reproduce the
bug.
In short, I think you linked to the right bug after all. :)
msg163990 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2012年06月25日 16:03
As long as we have a test confirming that SEEK_HOLE/SEEK_DATA are *accepted* by the io module (which is a big part of the patch), it is fine.
E.g. calling seek() with the constants and check that it only raises OSError or nothing should work, right?
msg164757 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2012年07月06日 21:39
Ping. The ARM buildbot still fails on test_fs_holes:
http://buildbot.python.org/all/builders/ARM%20Ubuntu%203.x/builds/775/steps/test/logs/stdio 
msg164835 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2012年07月07日 12:57
New changeset d69f95e57792 by Jesus Cea in branch 'default':
Cope with OSs lying - #10142: Support for SEEK_HOLE/SEEK_DATA
http://hg.python.org/cpython/rev/d69f95e57792 
msg164836 - (view) Author: Jesús Cea Avión (jcea) * (Python committer) Date: 2012年07月07日 12:58
Thanks for the head-up, Antoine.
History
Date User Action Args
2022年04月11日 14:57:07adminsetgithub: 54351
2012年10月05日 02:25:10jceasetstatus: open -> closed
2012年07月07日 12:58:39jceasetmessages: + msg164836
2012年07月07日 12:57:14python-devsetmessages: + msg164835
2012年07月06日 21:39:30pitrousetmessages: + msg164757
2012年06月25日 16:03:31georg.brandlsetmessages: + msg163990
2012年06月25日 12:27:08skrahsetmessages: + msg163960
2012年06月25日 12:05:11jceasetmessages: + msg163957
2012年06月25日 12:01:46georg.brandlsetmessages: + msg163956
2012年06月25日 12:01:15jceasetmessages: + msg163955
2012年06月25日 11:55:48jceasetmessages: + msg163952
2012年06月25日 11:46:36python-devsetmessages: + msg163946
2012年06月24日 07:34:23hyneksetnosy: - hynek
2012年06月23日 12:20:28georg.brandlsetmessages: + msg163594
2012年06月23日 12:18:30georg.brandlsetstatus: closed -> open
nosy: + georg.brandl
messages: + msg163593

2012年06月23日 09:19:30skrahsetmessages: + msg163559
2012年06月23日 08:58:34skrahsetmessages: + msg163554
2012年06月23日 00:58:49python-devsetmessages: + msg163511
2012年06月23日 00:56:52jceasetmessages: + msg163509
2012年06月23日 00:56:08python-devsetmessages: + msg163508
2012年06月22日 21:41:24skrahsetnosy: + skrah
messages: + msg163495
2012年06月22日 16:33:12python-devsetstatus: open -> closed
resolution: fixed
messages: + msg163431

stage: patch review -> resolved
2012年04月30日 14:13:31hyneksetnosy: + hynek
messages: + msg159696
2012年04月26日 17:57:15jceasetmessages: + msg159408
2012年04月26日 17:56:43jceasetfiles: + c7abfb4d4260.diff
2012年04月26日 15:25:53jceasetmessages: + msg159381
2012年04月26日 15:25:17jceasetfiles: + 6447a9323b11.diff
2012年04月26日 15:08:49jceasetstatus: closed -> open
resolution: fixed -> (no value)
messages: + msg159374

stage: resolved -> patch review
2012年04月26日 15:04:11benjamin.petersonsetnosy: + benjamin.peterson
messages: + msg159372
2012年04月26日 14:39:47python-devsetstatus: open -> closed

nosy: + python-dev
messages: + msg159370

resolution: fixed
stage: patch review -> resolved
2012年04月24日 20:15:46jceasetmessages: + msg159201
2012年04月24日 20:15:25jceasetfiles: + ad882ba08568.diff
2012年04月24日 19:57:14pitrousetmessages: + msg159199
2012年04月24日 19:51:01jceasetmessages: + msg159197
2012年04月24日 19:48:03jceasetfiles: + 0a5a40a4674a.diff
2012年04月24日 19:38:07jceasetfiles: - 34103049559f.diff
2012年04月24日 19:37:09jceasetfiles: + 34103049559f.diff
2012年04月20日 20:04:50amaury.forgeotdarcsetmessages: + msg158880
2012年04月20日 17:30:42jceasetmessages: + msg158856
2012年04月20日 17:17:10terry.reedysetnosy: + terry.reedy
messages: + msg158852
2012年04月20日 10:41:07jceasetassignee: jcea
messages: + msg158813
2012年04月18日 15:02:55jceasetmessages: + msg158631
stage: needs patch -> patch review
2012年04月18日 15:00:36jceasetfiles: + 3f967e00e267.diff
2012年04月18日 15:00:08jceasetfiles: - d6aeff63fa5e.diff
2012年04月18日 14:54:03jceasetfiles: + d6aeff63fa5e.diff
2012年04月18日 14:52:54jceasetfiles: - z.patch
2012年04月18日 14:52:29jceasethgrepos: + hgrepo119
2012年03月21日 09:10:09kristjan.jonssonsetnosy: - kristjan.jonsson
2012年03月20日 22:24:57vstinnersetnosy: + vstinner
messages: + msg156469
2012年03月20日 21:59:42aklauersetnosy: + aklauer
messages: + msg156466
2011年02月23日 01:31:21pitrousetassignee: amaury.forgeotdarc -> (no value)
messages: + msg129149
nosy: loewis, rhettinger, jcea, amaury.forgeotdarc, pitrou, kristjan.jonsson
stage: commit review -> needs patch
2011年02月23日 01:28:54jceasetkeywords: + patch, easy, - buildbot
assignee: kristjan.jonsson -> amaury.forgeotdarc

nosy: + amaury.forgeotdarc
2011年02月23日 01:17:20jceasetkeywords: + buildbot, - patch, easy
assignee: amaury.forgeotdarc -> kristjan.jonsson
versions: + Python 3.3, - Python 3.2
nosy: + kristjan.jonsson, - amaury.forgeotdarc
2010年11月12日 04:20:39jceasetassignee: pitrou -> amaury.forgeotdarc
2010年11月12日 04:20:21jceasetmessages: + msg121017
2010年11月11日 18:03:18amaury.forgeotdarcsetnosy: + amaury.forgeotdarc
messages: + msg120964
2010年11月11日 00:39:13jceasetmessages: + msg120935
2010年11月11日 00:28:26jceasetfiles: + z.patch
assignee: loewis -> pitrou
messages: + msg120934

keywords: + patch
2010年11月11日 00:23:01jceasetfiles: - z
2010年11月09日 02:56:16jceasetmessages: + msg120836
2010年10月25日 20:33:50loewissetmessages: + msg119577
2010年10月25日 20:25:00pitrousetmessages: + msg119576
2010年10月25日 20:10:33jceasetmessages: + msg119575
2010年10月25日 19:53:55pitrousetmessages: + msg119574
2010年10月25日 19:49:32loewissetmessages: + msg119573
2010年10月25日 13:57:48jceasetmessages: + msg119551
2010年10月25日 13:54:29jceasetfiles: + z

messages: + msg119549
stage: needs patch -> commit review
2010年10月21日 01:16:57rhettingersetmessages: + msg119256
2010年10月19日 22:20:48loewissetmessages: + msg119173
2010年10月19日 10:44:04pitrousetnosy: + pitrou
messages: + msg119132
2010年10月19日 10:37:41jceasetmessages: + msg119131
2010年10月19日 04:58:08rhettingersetassignee: loewis

messages: + msg119121
nosy: + rhettinger, loewis
2010年10月19日 03:31:41jceasetstage: needs patch
2010年10月19日 03:16:36jceasetcomponents: + Library (Lib), IO
2010年10月19日 03:15:16jceacreate

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