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 2008年05月05日 16:40 by gvanrossum, last changed 2022年04月29日 02:25 by ezio.melotti.
| Files | ||||
|---|---|---|---|---|
| File name | Uploaded | Description | Edit | |
| README.diff | loewis, 2010年10月01日 22:09 | |||
| a.diff | loewis, 2011年03月06日 16:49 | review | ||
| 6a1c8fcce229.diff | loewis, 2011年03月13日 16:15 | review | ||
| sometext.txt | pitrou, 2011年04月13日 23:12 | |||
| foo | loewis, 2011年04月14日 19:31 | |||
| test.txt | vsemionov, 2011年09月29日 22:19 | test | ||
| unnamed | ezio.melotti, 2011年10月06日 10:41 | |||
| issue12753-3.diff | ezio.melotti, 2011年10月06日 10:41 | review | ||
| issue12753-3.diff | ezio.melotti, 2011年10月06日 10:48 | review | ||
| unnamed | ezio.melotti, 2011年10月06日 10:50 | This is a "test" | ||
| issue12753-3.diff | ezio.melotti, 2011年10月06日 10:50 | review | ||
| b17f9a10235f.diff | ezio.melotti, 2012年09月01日 19:24 | review | ||
| entities.py | ezio.melotti, 2012年09月25日 18:37 | |||
| issue18958-2.diff | ezio.melotti, 2014年07月07日 17:23 | |||
| testtestpatch | testbpo, 2015年06月26日 15:18 | test | ||
| issue18958-2.diff | testbpo, 2015年06月26日 15:38 | |||
| Pull Requests | |||
|---|---|---|---|
| URL | Status | Linked | Edit |
| PR 46 | ezio.melotti, 2016年11月30日 23:00 | ||
| PR 56 | brett.cannon, 2017年01月06日 18:57 | ||
| PR 55 | brett.cannon, 2017年01月06日 22:54 | ||
| PR 59 | brett.cannon, 2017年01月11日 00:22 | ||
| PR 60 | brett.cannon, 2017年01月11日 00:26 | ||
| PR 61 | brett.cannon, 2017年01月11日 00:30 | ||
| PR 62 | brett.cannon, 2017年01月11日 00:33 | ||
| PR 63 | ezio.melotti, 2017年01月13日 09:34 | ||
| PR 70 | closed | brett.cannon, 2017年01月19日 18:03 | |
| PR 107 | ezio.melotti, 2017年02月21日 23:56 | ||
| PR 18614 | closed | berker.peksag, 2020年02月23日 07:46 | |
| Repositories containing patches | |||
|---|---|---|---|
| http://hg.python.org/sandbox/ncoghlan/ | |||
| http://hg.python.org/features/py3k-cdecimal/ | |||
| http://bitbucket.org/void/cpython | |||
| Messages (145) | |||
|---|---|---|---|
| msg66272 - (view) | Author: Guido van Rossum (gvanrossum) * (Python committer) | Date: 2008年05月05日 16:40 | |
This is a very long line. I am wondering how it will be wrapped. What will happen to this exceedingly long line? Will it be wrapped? Will it? Really? What will happen? Here's an example: def fact(n): if n > 1: return n * fact(n-1) else: assert n in (0, 1) return 1 What do you think of that? |
|||
| msg70327 - (view) | Author: Martin v. Löwis (loewis) * (Python committer) | Date: 2008年07月27日 17:54 | |
Testing authorage |
|||
| msg82492 - (view) | Author: Martin v. Löwis (loewis) * (Python committer) | Date: 2009年02月19日 19:58 | |
Does this still work? |
|||
| msg82495 - (view) | Author: Martin v. Löwis (loewis) * (Python committer) | Date: 2009年02月19日 20:28 | |
More testing. |
|||
| msg82496 - (view) | Author: Martin v. Löwis (loewis) * (Python committer) | Date: 2009年02月19日 20:29 | |
Testing 1..2..3 |
|||
| msg83238 - (view) | Author: Daniel Diniz (ajaksu2) * (Python triager) | Date: 2009年03月06日 05:29 | |
Reviewers: , Description: "This is a very long line. I am wondering how it will be wrapped. What will happen to this exceedingly long line? Will it be wrapped? Will it? Really? What will happen? Here's an example: def fact(n): if n > 1: return n * fact(n-1) else: assert n in (0, 1) return 1 What do you think of that?" Please review this at http://codereview.appspot.com/24075 Affected files: M static/upload.py Index: static/upload.py =================================================================== --- static/upload.py (revision 402) +++ static/upload.py (working copy) @@ -61,7 +61,30 @@ # Max size of patch or base file. MAX_UPLOAD_SIZE = 900 * 1024 +#python static/upload.py -R 2771 -F msg66272 --send_mail +fields = {'issue':'title', 'msg':'content', 'file':'description', } +def fetch_item(nodeid, kind='issue', tracker='http://bugs.python.org'): + query_tpl = [('@action', 'export_csv'), ('@filter', 'id'), + ('id', nodeid), ('@columns', fields[kind])] + item_url = '/%s?%s' % (kind, urllib.urlencode(query_tpl)) + content = urllib.urlopen(tracker + item_url).read().split('\r\n') + if content[0] == 'title': + return '[issue%s] %s' % (nodeid, content[1].strip()) + elif content[0] == 'content' or content[0] == 'description': + return content[1].strip() +def fetch(nodeid, debug=True): + kind = 'issue' + if nodeid.startswith('msg'): + kind = 'msg' + elif nodeid.startswith('file'): + kind = 'file' + nodeid = nodeid.replace(kind, '') + result = fetch_item(int(nodeid), kind) + if debug: + logging.info('Fetched "%s: %s"' % (kind, result)) + return result + def GetEmail(prompt): """Prompts the user for their email address and returns it. @@ -453,6 +476,14 @@ group.add_option("--send_mail", action="store_true", dest="send_mail", default=False, help="Send notification email to reviewers.") +# Link options +group = parser.add_option_group("Link options") +group.add_option("-R", "--roundup", action="store", dest="roundup", + metavar="ROUNDUP", default=None, + help="Python tracker issue number to link with.") +group.add_option("-F", "--fetch_descr", action="store", dest="fetch_descr", + metavar="FETCHDESCR", default=None, + help="Tracker file or message to fetch description from.") def GetRpcServer(options): @@ -1291,7 +1322,10 @@ prompt = "Message describing this patch set: " else: prompt = "New issue subject: " - message = options.message or raw_input(prompt).strip() + if options.roundup: + message = fetch(options.roundup) + else: + message = options.message or raw_input(prompt).strip() if not message: ErrorExit("A non-empty message is required") rpc_server = GetRpcServer(options) @@ -1307,11 +1341,16 @@ if "@" in reviewer and not reviewer.split("@")[1].count(".") == 1: ErrorExit("Invalid email address: %s" % reviewer) form_fields.append(("reviewers", options.reviewers)) + tracker_email = 'report@bugs.python.org,' if options.cc: for cc in options.cc.split(','): if "@" in cc and not cc.split("@")[1].count(".") == 1: ErrorExit("Invalid email address: %s" % cc) - form_fields.append(("cc", options.cc)) + if options.roundup: + cc = tracker_email + options.cc + form_fields.append(("cc", cc)) + elif options.roundup: + form_fields.append(("cc", tracker_email[:-1])) description = options.description if options.description_file: if options.description: @@ -1319,6 +1358,9 @@ file = open(options.description_file, 'r') description = file.read() file.close() + elif options.fetch_descr: + # XXX Add error handling as above + description = fetch(options.fetch_descr) if description: form_fields.append(("description", description)) # Send a hash of all the base file so the server can determine if a copy |
|||
| msg83244 - (view) | Author: Daniel Diniz (ajaksu2) * (Python triager) | Date: 2009年03月06日 14:40 | |
http://codereview.appspot.com/24075 |
|||
| msg83245 - (view) | Author: Daniel Diniz (ajaksu2) * (Python triager) | Date: 2009年03月06日 14:42 | |
Reviewers: , Description: From http://bugs.python.org/issue2771 "This is a very long line. I am wondering how it will be wrapped. What will happen to this exceedingly long line? Will it be wrapped? Will it? Really? What will happen? Here's an example: def fact(n): if n > 1: return n * fact(n-1) else: assert n in (0, 1) return 1 What do you think of that?" Description fetched from: http://bugs.python.org/msg66272 Please review this at http://codereview.appspot.com/25076 Affected files: M static/upload.py |
|||
| msg83438 - (view) | Author: Daniel Diniz (ajaksu2) * (Python triager) | Date: 2009年03月10日 16:22 | |
Reviewers: , Description: From http://bugs.python.org/issue2771 Testing 1..2..3 Description fetched from: http://bugs.python.org/msg82496 Please review this at http://codereview.appspot.com/22062 Affected files: M static/upload.py |
|||
| msg85703 - (view) | Author: Daniel Diniz (ajaksu2) * (Python triager) | Date: 2009年04月07日 14:51 | |
Testing how email handles quotes. [mailgw] # Keep email citations when accepting messages. # Setting this to "no" strips out "quoted" text from the message. # Signatures are also stripped. # Allowed values: yes, no # Default: yes keep_quoted_text = yes # Preserve the email body as is - that is, # keep the citations _and_ signatures. # Allowed values: yes, no # Default: no leave_body_unchanged = no |
|||
| msg85704 - (view) | Author: Daniel Diniz (ajaksu2) * (Python triager) | Date: 2009年04月07日 14:53 | |
Dumb whole message quote. On Tue, Apr 7, 2009 at 11:51 AM, Daniel Diniz <report@bugs.python.org> wrote: > > Daniel Diniz <ajaksu@gmail.com> added the comment: > > Testing how email handles quotes. > > [mailgw] > > # Keep email citations when accepting messages. > # Setting this to "no" strips out "quoted" text from the message. > # Signatures are also stripped. > # Allowed values: yes, no > # Default: yes > keep_quoted_text = yes > > # Preserve the email body as is - that is, > # keep the citations _and_ signatures. > # Allowed values: yes, no > # Default: no > leave_body_unchanged = no > > ---------- > > _______________________________________ > Python tracker <report@bugs.python.org> > <http://bugs.python.org/issue2771> > _______________________________________ > |
|||
| msg85706 - (view) | Author: Daniel Diniz (ajaksu2) * (Python triager) | Date: 2009年04月07日 14:54 | |
Nested quotes. On Tue, Apr 7, 2009 at 11:53 AM, Daniel Diniz <report@bugs.python.org> wrote: > > Daniel Diniz <ajaksu@gmail.com> added the comment: > > Dumb whole message quote. > > On Tue, Apr 7, 2009 at 11:51 AM, Daniel Diniz <report@bugs.python.org> wrote: >> >> Daniel Diniz <ajaksu@gmail.com> added the comment: >> >> Testing how email handles quotes. >> >> [mailgw] >> >> # Keep email citations when accepting messages. >> # Setting this to "no" strips out "quoted" text from the message. >> # Signatures are also stripped. >> # Allowed values: yes, no >> # Default: yes >> keep_quoted_text = yes >> >> # Preserve the email body as is - that is, >> # keep the citations _and_ signatures. >> # Allowed values: yes, no >> # Default: no >> leave_body_unchanged = no >> >> ---------- >> >> _______________________________________ >> Python tracker <report@bugs.python.org> >> <http://bugs.python.org/issue2771> >> _______________________________________ >> > > ---------- > > _______________________________________ > Python tracker <report@bugs.python.org> > <http://bugs.python.org/issue2771> > _______________________________________ > |
|||
| msg85707 - (view) | Author: Daniel Diniz (ajaksu2) * (Python triager) | Date: 2009年04月07日 14:57 | |
>>> Testing how email handles quotes. >>> >>> [mailgw] >>> >>> # Keep email citations when accepting messages. >>> # Setting this to "no" strips out "quoted" text from the message. >>> # Signatures are also stripped. >>> # Allowed values: yes, no >>> # Default: yes >>> keep_quoted_text = yes >>> >>> # Preserve the email body as is - that is, >>> # keep the citations _and_ signatures. >>> # Allowed values: yes, no >>> # Default: no >>> leave_body_unchanged = no >>> Bottom posting, less hints about quotes. |
|||
| msg85709 - (view) | Author: Daniel Diniz (ajaksu2) * (Python triager) | Date: 2009年04月07日 15:03 | |
> The reason I noticed this is that since they compare and hash equal, if > you put two such methods into a set, you end up with a set with one > method. Currently, this is preventing me from running two test methods > because the method itself is defined on a base class and two subclasses > which customize several other methods inherit it. I can only run one > test at a time. But you acknowledge they are really the same method attached to different classes, right? The notion of "unbound method" is mostly an implementation detail. The term occurs only 4 times in the whole Python documentation (according to Google). And in py3k they are gone. (*) Moreover, you say you want them to compare unequal because you *explicitly* want the same method called separately for each class it is defined on. Is there anything preventing you to have a set of (class, method) tuples instead? Because it sounds like the logical thing to do in your case. > Having them compare unequal means you can't actually trust unbound > method comparison, nor using unbound methods as keys in a dictionary. "Trust" is a strong word. You can trust the comparison operator if you agree with its semantics, you cannot trust it if you want different semantics. But that doesn't mean it is generally trustworthy or untrustworthy. Really, this is the same as with numbers: 'b' There are probably use cases where the above is annoying. But, conversely, there are probably use cases where a stricter behaviour would be annoying too. > This means some other mapping structure is required if you want to keep > around a bunch of methods and arguments to pass to them. I disagree. The general use case of keeping a bunch of callables with their respective arguments implies storing bound, not unbound, methods. (how often do you feed an unbound method to an addCallback() ?) > It also means > that any time you want to check two methods against each other with the > goal of eventually calling one or both of them, you need to use > something other than `== ́. I don't think there are lots of use cases for comparing *unbound* methods. One such use case is checking for redefinition of inherited methods, and the current __eq__ semantics look fine for that. (*) Python 3.0b2+ (py3k, Jul 29 2008, 20:37:34) [GCC 4.3.1 20080626 (prerelease)] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> class A: ... def f(): pass ... >>> type(A.f) <class 'function'> >>> a = A() >>> type(a.f) <class 'method'> >>> def g(): pass ... >>> class B: ... g = g ... >>> B.g is g True |
|||
| msg85711 - (view) | Author: Daniel Diniz (ajaksu2) * (Python triager) | Date: 2009年04月07日 15:06 | |
> Having them compare unequal means you can't actually trust unbound > method comparison, nor using unbound methods as keys in a dictionary. "Trust" is a strong word. You can trust the comparison operator if you agree with its semantics, you cannot trust it if you want different semantics. But that doesn't mean it is generally trustworthy or untrustworthy. Really, this is the same as with numbers: 'b' |
|||
| msg85712 - (view) | Author: Daniel Diniz (ajaksu2) * (Python triager) | Date: 2009年04月07日 15:09 | |
> Quote Unquote code snippet: 'b' |
|||
| msg117840 - (view) | Author: Martin v. Löwis (loewis) * (Python committer) | Date: 2010年10月01日 22:09 | |
Attach some file |
|||
| msg123996 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2010年12月15日 01:18 | |
testing autonosy for release managers with release blockers |
|||
| msg123997 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2010年12月15日 01:20 | |
Works fine. Now release managers will be added automatically to the nosy list when the priority of an issue is set to 'release blocker'. See http://psf.upfronthosting.co.za/roundup/meta/issue363 |
|||
| msg130141 - (view) | Author: Ned Deily (ned.deily) * (Python committer) | Date: 2011年03月06日 03:31 | |
Testing legacy svn references here r88479 and new hg references here 284026e00342. |
|||
| msg130313 - (view) | Author: Georg Brandl (georg.brandl) * (Python committer) | Date: 2011年03月08日 10:26 | |
test the roundup hook http://hg.python.org/cpythonb48aeb097432 |
|||
| msg130314 - (view) | Author: Georg Brandl (georg.brandl) * (Python committer) | Date: 2011年03月08日 10:28 | |
test the roundup hook again http://hg.python.org/cpython/dfc4a58fc2d4 |
|||
| msg130315 - (view) | Author: Georg Brandl (georg.brandl) * (Python committer) | Date: 2011年03月08日 10:30 | |
test the roundup hook another time http://hg.python.org/cpython/65f5077e877b |
|||
| msg130316 - (view) | Author: Georg Brandl (georg.brandl) * (Python committer) | Date: 2011年03月08日 10:32 | |
test the roundup hook another time http://hg.python.org/cpython/8f21aec26226 |
|||
| msg130317 - (view) | Author: Georg Brandl (georg.brandl) * (Python committer) | Date: 2011年03月08日 10:34 | |
test the roundup hook another time http://hg.python.org/cpython/cf074b297bf9 |
|||
| msg130318 - (view) | Author: Georg Brandl (georg.brandl) * (Python committer) | Date: 2011年03月08日 10:36 | |
test the roundup hook another time http://hg.python.org/cpython/502f0683b161 |
|||
| msg130320 - (view) | Author: Georg Brandl (georg.brandl) * (Python committer) | Date: 2011年03月08日 11:07 | |
: test the refactored roundup hook. http://hg.python.org/cpython/cd21195d07ca |
|||
| msg130323 - (view) | Author: Antoine Pitrou (pitrou) * (Python committer) | Date: 2011年03月08日 11:18 | |
re bug 2771 -- testing the roundup hook. http://hg.python.org/cpython/c37da7946f2b |
|||
| msg130325 - (view) | Author: Georg Brandl (georg.brandl) * (Python committer) | Date: 2011年03月08日 11:20 | |
finally fixing issue 2771: yay! http://hg.python.org/cpython/440238c16a7a |
|||
| msg130328 - (view) | Author: Antoine Pitrou (pitrou) * (Python committer) | Date: 2011年03月08日 12:56 | |
> re bug 2771 -- testing the roundup hook. > http://hg.python.org/cpython/c37da7946f2b Looks like this URL misses the "/rev/" before the changeset id. |
|||
| msg130352 - (view) | Author: Roundup Robot (python-dev) (Python triager) | Date: 2011年03月08日 19:40 | |
Changeset b92334d06445 by Antoine Pitrou <solipsis@pitrou.net>: Issue #2771: fixing frobnicator\nI hope this works |
|||
| msg130353 - (view) | Author: Roundup Robot (python-dev) (Python triager) | Date: 2011年03月08日 19:42 | |
New changeset ef6738f4ba2e by Antoine Pitrou <solipsis@pitrou.net>: Issue #2771: fixing frobnicator again! |
|||
| msg130354 - (view) | Author: Roundup Robot (python-dev) (Python triager) | Date: 2011年03月08日 19:46 | |
New changeset ef6738f4ba2e by Antoine Pitrou: Issue #2771: fixing frobnicator again! |
|||
| msg130355 - (view) | Author: Roundup Robot (python-dev) (Python triager) | Date: 2011年03月08日 19:46 | |
New changeset ef6738f4ba2e by Antoine Pitrou: Issue #2771: fixing frobnicator again! |
|||
| msg130356 - (view) | Author: Roundup Robot (python-dev) (Python triager) | Date: 2011年03月08日 19:47 | |
New changeset ef6738f4ba2e by Antoine Pitrou: Issue #2771: fixing frobnicator again! |
|||
| msg130357 - (view) | Author: Roundup Robot (python-dev) (Python triager) | Date: 2011年03月08日 19:50 | |
New changeset ef6738f4ba2e by Antoine Pitrou: Issue #2771: fixing frobnicator again! http://hg.python.org/cpython/rev/ef6738f4ba2e |
|||
| msg130358 - (view) | Author: Roundup Robot (python-dev) (Python triager) | Date: 2011年03月08日 19:50 | |
New changeset ef6738f4ba2e by Antoine Pitrou: Issue #2771: fixing frobnicator again! http://hg.python.org/cpython/rev/ef6738f4ba2e |
|||
| msg130359 - (view) | Author: Roundup Robot (python-dev) (Python triager) | Date: 2011年03月08日 19:51 | |
New changeset ef6738f4ba2e by Antoine Pitrou: Issue #2771: fixing frobnicator again! http://hg.python.org/test/rev/ef6738f4ba2e |
|||
| msg130360 - (view) | Author: Roundup Robot (python-dev) (Python triager) | Date: 2011年03月08日 19:53 | |
New changeset ef6738f4ba2e by Antoine Pitrou in branch 'default': Issue #2771: fixing frobnicator again! http://hg.python.org/test/rev/ef6738f4ba2e |
|||
| msg130363 - (view) | Author: Roundup Robot (python-dev) (Python triager) | Date: 2011年03月08日 19:55 | |
New changeset ef6738f4ba2e by Antoine Pitrou in branch 'default': Issue #2771: fixing frobnicator again! /rev/ef6738f4ba2e |
|||
| msg130364 - (view) | Author: Roundup Robot (python-dev) (Python triager) | Date: 2011年03月08日 19:56 | |
New changeset ef6738f4ba2e by Antoine Pitrou in branch 'default': Issue #2771: fixing frobnicator again! http://hg.python.org/test/rev/ef6738f4ba2e |
|||
| msg130365 - (view) | Author: Roundup Robot (python-dev) (Python triager) | Date: 2011年03月08日 19:57 | |
New changeset ef6738f4ba2e by Antoine Pitrou in branch 'default': Issue #2771: fixing frobnicator again! http://hg.python.org/test/rev/ef6738f4ba2e |
|||
| msg130371 - (view) | Author: Roundup Robot (python-dev) (Python triager) | Date: 2011年03月08日 20:37 | |
New changeset a25e4c9f7b3a by éléphant in branch 'default': Issue #2771: héhé http://hg.python.org/test/rev/a25e4c9f7b3a |
|||
| msg130708 - (view) | Author: Roundup Robot (python-dev) (Python triager) | Date: 2011年03月12日 23:30 | |
New changeset 93a15af3a8ce by Antoine Pitrou in branch 'default': fixes #2771 http://hg.python.org/test/rev/93a15af3a8ce |
|||
| msg130711 - (view) | Author: Roundup Robot (python-dev) (Python triager) | Date: 2011年03月12日 23:32 | |
New changeset acd842ea10e6 by Antoine Pitrou in branch 'default': closes #2771 http://hg.python.org/test/rev/acd842ea10e6 |
|||
| msg130746 - (view) | Author: Roundup Robot (python-dev) (Python triager) | Date: 2011年03月13日 15:12 | |
New changeset e51cd925a89a by Ezio Melotti in branch 'default': Test hook (closes #2771). http://hg.python.org/test/rev/e51cd925a89a |
|||
| msg131876 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2011年03月23日 14:33 | |
testing nosy |
|||
| msg131877 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2011年03月23日 14:33 | |
testing again |
|||
| msg131887 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2011年03月23日 15:48 | |
testing nosy |
|||
| msg132862 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2011年04月03日 16:42 | |
Testing |
|||
| msg143322 - (view) | Author: Roundup Robot (python-dev) (Python triager) | Date: 2011年09月01日 13:03 | |
New changeset 90586887032e by Ezio Melotti in branch 'default': test: change the content of the p file so http://hg.python.org/test/rev/90586887032e |
|||
| msg144642 - (view) | Author: Victor Semionov (vsemionov) | Date: 2011年09月29日 22:18 | |
Testing. |
|||
| msg144643 - (view) | Author: Victor Semionov (vsemionov) | Date: 2011年09月29日 22:19 | |
testing |
|||
| msg144644 - (view) | Author: Victor Semionov (vsemionov) | Date: 2011年09月29日 22:20 | |
adsfaf |
|||
| msg144988 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2011年10月06日 10:41 | |
test attachments |
|||
| msg144989 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2011年10月06日 10:48 | |
test attachments |
|||
| msg144990 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2011年10月06日 10:50 | |
test attachments |
|||
| msg144991 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2011年10月06日 10:55 | |
Adding # ignore html part of multipart/alternative ignore_alternatives = yes to the config.ini seems to get rid of the "unnamed" attachments. |
|||
| msg147556 - (view) | Author: Roundup Robot (python-dev) (Python triager) | Date: 2011年11月13日 16:41 | |
New changeset 0e94d9bef251 by Ezio Melotti in branch 'default': Closes #2771. #13388 now needs to be updated. http://hg.python.org/test/rev/0e94d9bef251 |
|||
| msg147558 - (view) | Author: Roundup Robot (python-dev) (Python triager) | Date: 2011年11月13日 16:45 | |
New changeset e4fcac92a80a by Ezio Melotti in branch 'default': Closes #2771. #13388 now needs to be updated. http://hg.python.org/test/rev/e4fcac92a80a |
|||
| msg148435 - (view) | Author: Roundup Robot (python-dev) (Python triager) | Date: 2011年11月27日 02:08 | |
New changeset fc1e01fe7f30 by Antoine Pitrou in branch 'default': test hook with issue #2771. http://hg.python.org/test/rev/fc1e01fe7f30 |
|||
| msg154050 - (view) | Author: Éric Araujo (eric.araujo) * (Python committer) | Date: 2012年02月23日 04:26 | |
Let’s link to branches other than default: Lib/fileinput.py, Python/bltinmodule.c:42 |
|||
| msg158528 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2012年04月17日 04:29 | |
Testing links: http://bugs.python.org/issue2771 http://bugs.python.org/issue2771. http://bugs.python.org/issue2771, http://bugs.python.org/issue2771; http://bugs.python.org/issue2771: http://bugs.python.org/issue2771! (http://bugs.python.org/issue2771) [http://bugs.python.org/issue2771] {http://bugs.python.org/issue2771} <http://bugs.python.org/issue2771> |
|||
| msg161311 - (view) | Author: R. David Murray (r.david.murray) * (Python committer) | Date: 2012年05月22日 01:04 | |
This is a test email reply with no MIME header. |
|||
| msg164482 - (view) | Author: Roundup Robot (python-dev) (Python triager) | Date: 2012年07月01日 14:58 | |
New changeset b449118653fe by Antoine Pitrou in branch 'default': some new tést (issue #2771) http://hg.python.org/test/rev/b449118653fe |
|||
| msg164498 - (view) | Author: Roundup Robot (python-dev) (Python triager) | Date: 2012年07月01日 21:08 | |
New changeset b4af3925bda6 by Antoine Pitrou in branch 'default': some new tést (issue #2771) http://hg.python.org/test/rev/b4af3925bda6 |
|||
| msg164499 - (view) | Author: Roundup Robot (python-dev) (Python triager) | Date: 2012年07月01日 21:18 | |
New changeset 3e4513003ded by Antoine Pitrou in branch 'default': some new tést (issue #2771) http://hg.python.org/test/rev/3e4513003ded New changeset b449118653fe by Antoine Pitrou in branch 'default': some new tést (issue #2771) http://hg.python.org/test/rev/b449118653fe New changeset 99fbc7dfb076 by Antoine Pitrou in branch 'default': some new tést (issue #2771) http://hg.python.org/test/rev/99fbc7dfb076 New changeset b4af3925bda6 by Antoine Pitrou in branch 'default': some new tést (issue #2771) http://hg.python.org/test/rev/b4af3925bda6 New changeset 76da38684c9d by Antoine Pitrou in branch 'default': some other test (issue #2771) http://hg.python.org/test/rev/76da38684c9d |
|||
| msg166660 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2012年07月28日 15:22 | |
test |
|||
| msg169819 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2012年09月04日 09:13 | |
test issue linking: issue1528167 issue 1528167 #1528167 |
|||
| msg171493 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2012年09月28日 15:28 | |
testing irker |
|||
| msg171496 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2012年09月28日 15:47 | |
Another irker test |
|||
| msg171545 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2012年09月28日 21:06 | |
Another irker test |
|||
| msg171565 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2012年09月29日 12:28 | |
ᚠᚡᚢᚣᚤᚥᚦᚧᚨᚩᚪᚫᚬᚭᚮᚯᚰᚱᚲᚳᚴᚵᚶᚷᚸᚹᚺᚻᚼᚽᚾᚿᛀᛁᛂᛃᛄ |
|||
| msg171566 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2012年09月29日 12:30 | |
ᚠᚡᚢᚣᚤᚥᚦᚧᚨᚩᚪᚫᚬᚭᚮᚯᚰᚱᚲᚳᚴᚵᚶᚷᚸᚹᚺᚻᚼᚽᚾᚿᛀᛁᛂᛃᛄ |
|||
| msg171569 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2012年09月29日 12:50 | |
another test |
|||
| msg175115 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2012年11月07日 17:51 | |
test |
|||
| msg175117 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2012年11月07日 18:10 | |
another test |
|||
| msg175601 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2012年11月15日 08:02 | |
testing the new version of irker |
|||
| msg175602 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2012年11月15日 08:05 | |
another test |
|||
| msg175604 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2012年11月15日 09:06 | |
test |
|||
| msg175609 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2012年11月15日 11:42 | |
test |
|||
| msg175610 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2012年11月15日 11:52 | |
another test |
|||
| msg175611 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2012年11月15日 11:54 | |
another test |
|||
| msg175612 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2012年11月15日 11:56 | |
test |
|||
| msg175613 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2012年11月15日 11:56 | |
another test |
|||
| msg175614 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2012年11月15日 12:04 | |
final test |
|||
| msg175801 - (view) | Author: Roundup Robot (python-dev) (Python triager) | Date: 2012年11月17日 20:10 | |
New changeset 47ae836aa221 by Antoine Pitrou in branch 'default': Issue #2771: !! http://hg.python.org/test/rev/47ae836aa221 |
|||
| msg177455 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2012年12月14日 09:51 | |
irker test |
|||
| msg184606 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2013年03月19日 06:57 | |
Test new irker. |
|||
| msg185210 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2013年03月25日 16:49 | |
test |
|||
| msg185211 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2013年03月25日 16:51 | |
test |
|||
| msg186162 - (view) | Author: Mark Dickinson (mark.dickinson) * (Python committer) | Date: 2013年04月06日 20:03 | |
msg137617 message 137617 message #137617 |
|||
| msg186457 - (view) | Author: Test User Deily (testusernad) | Date: 2013年04月09日 22:05 | |
testing |
|||
| msg190899 - (view) | Author: Berker Peksag (berker.peksag) * (Python committer) | Date: 2013年06月10日 11:31 | |
Lib/smtplib.py#l226 Lib/smtplib.py:l226 Lib/smtplib.py#226 Lib/smtplib.py:226 |
|||
| msg200373 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2013年10月19日 05:10 | |
Ping. |
|||
| msg210887 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2014年02月10日 23:04 | |
test after roundup upgrade |
|||
| msg210888 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2014年02月10日 23:06 | |
test message via email |
|||
| msg210899 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2014年02月11日 04:51 | |
another test |
|||
| msg216745 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2014年04月17日 21:16 | |
Ping. |
|||
| msg216749 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2014年04月17日 21:36 | |
mail pong |
|||
| msg222481 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2014年07月07日 17:23 | |
test |
|||
| msg226864 - (view) | Author: Roundup Robot (python-dev) (Python triager) | Date: 2014年09月14日 10:34 | |
New changeset 8510224e05dc by Georg Brandl in branch 'default': Closes #2771: test. http://hg.python.org/test/rev/8510224e05dc |
|||
| msg226865 - (view) | Author: Roundup Robot (python-dev) (Python triager) | Date: 2014年09月14日 10:38 | |
New changeset e79d1244d887 by Georg Brandl in branch 'default': #2771: test baseurl change. https://hg.python.org/test/rev/e79d1244d887 |
|||
| msg240911 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2015年04月14日 15:33 | |
ping |
|||
| msg244636 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2015年06月02日 02:11 | |
test after roundup upgrade |
|||
| msg244637 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2015年06月02日 02:13 | |
test message via email |
|||
| msg281623 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2016年11月24日 09:15 | |
Test |
|||
| msg282111 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2016年11月30日 23:00 | |
Testing PR linking |
|||
| msg282209 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2016年12月01日 23:02 | |
Testing that the link to PR 46 works. Pull Request 46 should also be a link. PullRequest 46 too. Generally you should just use PR46. |
|||
| msg284785 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2017年01月05日 23:05 | |
testing github integration |
|||
| msg284786 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2017年01月05日 23:06 | |
another test |
|||
| msg284856 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2017年01月06日 21:37 | |
test |
|||
| msg285373 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2017年01月13日 09:34 | |
test pr status |
|||
| msg286827 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2017年02月02日 21:22 | |
test |
|||
| msg296933 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2017年06月26日 19:22 | |
BB |
|||
| msg301677 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2017年09月08日 05:28 | |
test |
|||
| msg303086 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2017年09月27日 01:14 | |
test |
|||
| msg326188 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2018年09月23日 23:04 | |
test |
|||
| msg326189 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2018年09月23日 23:06 | |
test |
|||
| msg326190 - (view) | Author: Ned Batchelder (nedbat) * (Python triager) | Date: 2018年09月23日 23:07 | |
A test comment from nedbat |
|||
| msg326354 - (view) | Author: Ee Durbin (EWDurbin) * (Python triager) | Date: 2018年09月25日 13:55 | |
test comment |
|||
| msg326503 - (view) | Author: Ned Batchelder (nedbat) * (Python triager) | Date: 2018年09月26日 20:32 | |
Also a test. |
|||
| msg326930 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2018年10月03日 02:38 | |
another test |
|||
| msg327448 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2018年10月10日 00:53 | |
mail test |
|||
| msg330748 - (view) | Author: Karthikeyan Singaravelan (xtreak) * (Python committer) | Date: 2018年11月30日 06:51 | |
test comment |
|||
| msg330753 - (view) | Author: Karthikeyan Singaravelan (xtreak) * (Python committer) | Date: 2018年11月30日 07:10 | |
> I think I have seen this bug reported elsewhere but can't find it now. Sorry, I was referring to issue6028 and issue32570 that I thought were similar to the original report. |
|||
| msg332292 - (view) | Author: Ee Durbin (EWDurbin) * (Python triager) | Date: 2018年12月21日 14:49 | |
Testing after hosting migration completion |
|||
| msg332369 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2018年12月22日 21:06 | |
test message via email |
|||
| msg335253 - (view) | Author: Ee Durbin (EWDurbin) * (Python triager) | Date: 2019年02月11日 18:54 | |
comment on test issue to test the request time. |
|||
| msg335254 - (view) | Author: Ee Durbin (EWDurbin) * (Python triager) | Date: 2019年02月11日 18:56 | |
test comment |
|||
| msg335258 - (view) | Author: Ee Durbin (EWDurbin) * (Python triager) | Date: 2019年02月11日 19:07 | |
test mail sending |
|||
| msg335263 - (view) | Author: Ee Durbin (EWDurbin) * (Python triager) | Date: 2019年02月11日 19:28 | |
should be fast send. |
|||
| msg335266 - (view) | Author: Ee Durbin (EWDurbin) * (Python triager) | Date: 2019年02月11日 19:59 | |
test |
|||
| msg335267 - (view) | Author: Antoine Pitrou (pitrou) * (Python committer) | Date: 2019年02月11日 20:04 | |
notifying a lot of people |
|||
| msg335270 - (view) | Author: Stéphane Wirtel (matrixise) * (Python committer) | Date: 2019年02月11日 21:28 | |
irc pong |
|||
| msg338799 - (view) | Author: Ee Durbin (EWDurbin) * (Python triager) | Date: 2019年03月25日 14:25 | |
Test Email Notification |
|||
| msg338800 - (view) | Author: Ee Durbin (EWDurbin) * (Python triager) | Date: 2019年03月25日 14:29 | |
Test Notification |
|||
| msg344722 - (view) | Author: Ee Durbin (EWDurbin) * (Python triager) | Date: 2019年06月05日 13:38 | |
test comment |
|||
| msg344723 - (view) | Author: Ee Durbin (EWDurbin) * (Python triager) | Date: 2019年06月05日 13:47 | |
test comment |
|||
| msg352015 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2019年09月11日 19:02 | |
test comment |
|||
| msg394297 - (view) | Author: STINNER Victor (vstinner) * (Python committer) | Date: 2021年05月25日 07:18 | |
test IRC bot |
|||
| msg394298 - (view) | Author: STINNER Victor (vstinner) * (Python committer) | Date: 2021年05月25日 07:18 | |
Close (test IRC bot). Test is successful! "09:18 < irker301> vstinner #2771/Test issue: [open] test IRC bot https://bugs.python.org/issue2771" logged on #python-dev-infras https://github.com/python/psf-salt/issues/208#event-4790301517 |
|||
| msg394456 - (view) | Author: Ee Durbin (EWDurbin) * (Python triager) | Date: 2021年05月26日 19:28 | |
Test IRC |
|||
| msg405354 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2021年10月30日 02:52 | |
Testing GitHub mentions, please ignore: @serhiy-storchaka |
|||
| msg416999 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2022年04月08日 18:14 | |
So long, and thanks for all the bugs. |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月29日 02:25:04 | ezio.melotti | set | resolution: works for me -> fixed |
| 2022年04月11日 15:02:24 | ezio.melotti | set | resolution: fixed -> works for me |
| 2022年04月11日 14:56:34 | admin | set | github: 666 -> 47020 |
| 2022年04月11日 14:04:13 | admin | set | github: 1 -> 666 |
| 2022年04月11日 13:41:51 | admin | set | github: 18614 -> 1 |
| 2022年04月11日 13:36:41 | ezio.melotti | set | resolution: works for me -> fixed |
| 2022年04月11日 12:41:19 | ezio.melotti | set | nosy:
- pitrou, nedbat, python-dev, zach.ware, matrixise, EWDurbin resolution: fixed -> works for me |
| 2022年04月08日 18:14:51 | ezio.melotti | set | messages: + msg416999 |
| 2022年03月12日 03:06:27 | admin | set | github: 1 -> 18614 |
| 2022年03月09日 04:19:35 | admin | set | github: 1 |
| 2022年03月08日 05:30:02 | ezio.melotti | set | dependencies:
+ Add math.tau, Python source code build fails with old mercurial superseder: Test issue |
| 2022年03月08日 05:30:02 | ezio.melotti | link | issue2771 superseder |
| 2021年11月08日 18:35:17 | berker.peksag | set | nosy:
- berker.peksag |
| 2021年11月08日 16:47:21 | vstinner | set | nosy:
- vstinner |
| 2021年10月30日 02:52:18 | ezio.melotti | set | messages: + msg405354 |
| 2021年10月25日 22:52:09 | ezio.melotti | set | assignee: python-dev -> ezio.melotti |
| 2021年10月25日 22:51:56 | ezio.melotti | set | assignee: python-dev |
| 2021年10月25日 22:51:34 | ezio.melotti | set | assignee: python-dev -> (no value) |
| 2021年10月25日 22:50:53 | ezio.melotti | set | assignee: ezio.melotti -> python-dev versions: + Python 3.11, - Python 3.9 |
| 2021年05月26日 19:28:36 | EWDurbin | set | status: closed -> open messages: + msg394456 |
| 2021年05月26日 19:27:54 | EWDurbin | set | status: open -> closed versions: + Python 3.9, - Python 3.10 |
| 2021年05月26日 19:25:15 | EWDurbin | set | status: closed -> open versions: + Python 3.10, - Python 3.9 |
| 2021年05月25日 07:18:54 | vstinner | set | status: open -> closed resolution: fixed messages: + msg394298 |
| 2021年05月25日 07:18:15 | vstinner | set | status: closed -> open nosy: + vstinner messages: + msg394297 resolution: fixed -> (no value) |
| 2020年02月23日 16:30:43 | xtreak | set | nosy:
- xtreak |
| 2020年02月23日 07:47:22 | berker.peksag | set | nosy:
- brett.cannon |
| 2020年02月23日 07:46:23 | berker.peksag | set | nosy:
+ berker.peksag, brett.cannon pull_requests: + pull_request17979 |
| 2019年09月11日 19:02:56 | ezio.melotti | set | messages: + msg352015 |
| 2019年09月11日 11:05:11 | zwtestuser | set | nosy:
+ zach.ware type: enhancement -> behavior components: + Tests, - Documentation versions: - Python 3.8 |
| 2019年06月05日 13:47:43 | EWDurbin | set | messages: + msg344723 |
| 2019年06月05日 13:38:07 | EWDurbin | set | messages: + msg344722 |
| 2019年05月24日 20:16:09 | ezio.melotti | set | keywords:
- patch, easy (C) components: + Documentation, - Tests versions: + Python 3.8 |
| 2019年05月24日 20:15:03 | ezio.melotti | set | keywords:
+ easy (C) priority: low components: + Tests versions: + Python 3.9, - Python 3.8 |
| 2019年03月25日 14:29:35 | EWDurbin | set | messages: + msg338800 |
| 2019年03月25日 14:25:19 | EWDurbin | set | messages: + msg338799 |
| 2019年02月11日 21:28:56 | matrixise | set | nosy:
+ matrixise messages: + msg335270 |
| 2019年02月11日 20:04:12 | pitrou | set | messages: + msg335267 |
| 2019年02月11日 19:59:11 | EWDurbin | set | messages: + msg335266 |
| 2019年02月11日 19:28:26 | EWDurbin | set | messages: + msg335263 |
| 2019年02月11日 19:07:17 | EWDurbin | set | messages: + msg335258 |
| 2019年02月11日 18:56:22 | EWDurbin | set | messages: + msg335254 |
| 2019年02月11日 18:54:01 | EWDurbin | set | messages: + msg335253 |
| 2018年12月22日 21:06:11 | ezio.melotti | set | messages: + msg332369 |
| 2018年12月21日 14:49:54 | EWDurbin | set | messages: + msg332292 |
| 2018年11月30日 07:10:00 | xtreak | set | messages: + msg330753 |
| 2018年11月30日 06:51:19 | xtreak | set | nosy:
+ xtreak messages: + msg330748 |
| 2018年10月10日 00:53:48 | ezio.melotti | set | messages: + msg327448 |
| 2018年10月03日 02:38:13 | ezio.melotti | set | messages: + msg326930 |
| 2018年09月26日 20:32:48 | nedbat | set | messages: + msg326503 |
| 2018年09月25日 13:55:24 | EWDurbin | set | messages: + msg326354 |
| 2018年09月25日 13:55:06 | EWDurbin | set | nosy:
+ EWDurbin |
| 2018年09月23日 23:07:36 | nedbat | set | messages: + msg326190 |
| 2018年09月23日 23:06:59 | ezio.melotti | set | nosy:
+ nedbat messages: + msg326189 |
| 2018年09月23日 23:04:20 | ezio.melotti | set | nosy:
- nedbat messages: + msg326188 |
| 2018年09月23日 22:59:06 | nedbat | set | nosy:
+ nedbat |
| 2017年10月28日 00:37:28 | ezio.melotti | set | messages: - msg303087 |
| 2017年09月27日 01:15:08 | ezio.melotti | set | messages: + msg303087 |
| 2017年09月27日 01:14:23 | ezio.melotti | set | messages:
+ msg303086 versions: + Python 3.8, - Python 3.5 |
| 2017年09月08日 05:28:17 | ezio.melotti | set | messages: + msg301677 |
| 2017年06月26日 19:22:14 | ezio.melotti | set | messages: + msg296933 |
| 2017年03月24日 13:09:32 | ezio.melotti | set | messages: - msg286498 |
| 2017年02月21日 23:56:26 | ezio.melotti | set | pull_requests: + pull_request192 |
| 2017年02月02日 21:52:07 | berker.peksag | set | status: closed resolution: fixed stage: resolved |
| 2017年02月02日 21:51:57 | berker.peksag | set | status: closed -> (no value) resolution: fixed -> (no value) stage: resolved -> (no value) |
| 2017年02月02日 21:22:41 | ezio.melotti | set | messages: + msg286827 |
| 2017年01月30日 22:26:24 | ezio.melotti | set | messages: + msg286498 |
| 2017年01月19日 18:03:36 | brett.cannon | set | pull_requests: + pull_request19 |
| 2017年01月13日 09:34:13 | ezio.melotti | set | messages:
+ msg285373 pull_requests: + pull_request16 |
| 2017年01月11日 00:33:39 | brett.cannon | set | pull_requests: + pull_request14 |
| 2017年01月11日 00:30:02 | brett.cannon | set | pull_requests: + pull_request13 |
| 2017年01月11日 00:26:48 | brett.cannon | set | pull_requests: + pull_request12 |
| 2017年01月11日 00:22:40 | brett.cannon | set | pull_requests: + pull_request11 |
| 2017年01月06日 22:54:44 | brett.cannon | set | pull_requests: + pull_request10 |
| 2017年01月06日 21:37:02 | ezio.melotti | set | messages: + msg284856 |
| 2017年01月06日 18:57:19 | brett.cannon | set | pull_requests: + pull_request9 |
| 2017年01月05日 23:06:50 | ezio.melotti | set | messages: + msg284786 |
| 2017年01月05日 23:05:22 | ezio.melotti | set | messages: + msg284785 |
| 2016年12月01日 23:02:21 | ezio.melotti | set | messages: + msg282209 |
| 2016年11月30日 23:00:02 | ezio.melotti | set | messages:
+ msg282111 pull_requests: + pull_request1 |
| 2016年11月24日 09:15:38 | ezio.melotti | set | messages: + msg281623 |
| 2015年06月26日 15:38:51 | testbpo | set | files: + issue18958-2.diff |
| 2015年06月26日 15:18:34 | testbpo | set | files: + testtestpatch |
| 2015年06月02日 02:13:02 | ezio.melotti | set | messages: + msg244637 |
| 2015年06月02日 02:11:56 | ezio.melotti | set | messages: + msg244636 |
| 2015年04月14日 15:33:09 | ezio.melotti | set | messages: + msg240911 |
| 2014年09月14日 10:38:26 | python-dev | set | messages: + msg226865 |
| 2014年09月14日 10:34:14 | python-dev | set | status: open -> closed resolution: fixed messages: + msg226864 stage: test needed -> resolved |
| 2014年09月14日 10:34:04 | georg.brandl | set | status: closed -> open |
| 2014年08月02日 03:14:27 | ezio.melotti | set | status: open -> closed |
| 2014年07月30日 18:46:54 | terry.reedy | set | priority: low -> (no value) |
| 2014年07月30日 18:46:31 | terry.reedy | set | priority: low status: open resolution: not a bug -> (no value) |
| 2014年07月30日 18:45:55 | terry.reedy | set | status: closed -> (no value) |
| 2014年07月30日 15:56:48 | loewis | set | status: closed |
| 2014年07月30日 15:54:14 | loewis | set | status: closed -> (no value) |
| 2014年07月30日 15:52:52 | loewis | set | priority: normal -> (no value) |
| 2014年07月07日 17:23:38 | ezio.melotti | set | files:
+ issue18958-2.diff resolution: later -> not a bug messages: + msg222481 |
| 2014年04月17日 21:36:08 | ezio.melotti | set | messages: + msg216749 |
| 2014年04月17日 21:17:07 | pitrou | set | stage: resolved -> test needed |
| 2014年04月17日 21:16:48 | ezio.melotti | set | versions: + Python 3.5, - Python 3.4 |
| 2014年04月17日 21:16:17 | ezio.melotti | set | messages: + msg216745 |
| 2014年02月27日 19:59:15 | ezio.melotti | set | nosy:
+ pitrou |
| 2014年02月11日 04:51:06 | ezio.melotti | set | priority: low -> normal nosy: + python-dev messages: + msg210899 assignee: ezio.melotti |
| 2014年02月10日 23:06:30 | ezio.melotti | set | messages: + msg210888 |
| 2014年02月10日 23:04:40 | ezio.melotti | set | messages: + msg210887 |
| 2013年10月19日 05:10:56 | ezio.melotti | set | nosy:
- berker.peksag messages: + msg200373 |
| 2013年06月10日 11:31:22 | berker.peksag | set | nosy:
+ berker.peksag messages: + msg190899 |
| 2013年04月10日 15:44:36 | ezio.melotti | set | nosy: + ezio.melotti, - testusernad |
| 2013年04月09日 22:05:04 | testusernad | set | nosy:
+ testusernad, - mark.dickinson, ezio.melotti messages: + msg186457 |
| 2013年04月06日 20:03:52 | mark.dickinson | set | nosy:
+ mark.dickinson messages: + msg186162 |
| 2013年03月25日 16:51:08 | ezio.melotti | set | messages: + msg185211 |
| 2013年03月25日 16:49:18 | ezio.melotti | set | messages: + msg185210 |
| 2013年03月19日 06:57:12 | ezio.melotti | set | messages: + msg184606 |
| 2013年01月03日 20:20:22 | ezio.melotti | set | nosy:
- python-dev type: behavior -> enhancement |
| 2013年01月03日 20:19:41 | ezio.melotti | set | type: behavior |
| 2012年12月14日 09:51:15 | ezio.melotti | set | messages: + msg177455 |
| 2012年11月17日 20:10:24 | python-dev | set | nosy:
+ python-dev messages: + msg175801 |
| 2012年11月15日 12:04:15 | ezio.melotti | set | messages: + msg175614 |
| 2012年11月15日 11:56:55 | ezio.melotti | set | messages: + msg175613 |
| 2012年11月15日 11:56:03 | ezio.melotti | set | messages: + msg175612 |
| 2012年11月15日 11:54:06 | ezio.melotti | set | messages: + msg175611 |
| 2012年11月15日 11:52:56 | ezio.melotti | set | messages: + msg175610 |
| 2012年11月15日 11:42:38 | ezio.melotti | set | messages: + msg175609 |
| 2012年11月15日 09:06:41 | ezio.melotti | set | messages: + msg175604 |
| 2012年11月15日 08:05:37 | ezio.melotti | set | messages: + msg175602 |
| 2012年11月15日 08:02:49 | ezio.melotti | set | messages: + msg175601 |
| 2012年11月07日 18:10:05 | ezio.melotti | set | messages: + msg175117 |
| 2012年11月07日 17:51:42 | ezio.melotti | set | nosy:
- chris.jerdonek messages: + msg175115 |
| 2012年10月01日 02:48:14 | ezio.melotti | set | nosy:
+ chris.jerdonek |
| 2012年09月29日 12:50:05 | ezio.melotti | set | messages:
+ msg171569 versions: + Python 3.4, - Python 3.2 |
| 2012年09月29日 12:30:24 | ezio.melotti | set | messages: + msg171566 |
| 2012年09月29日 12:28:34 | ezio.melotti | set | messages: + msg171565 |
| 2012年09月28日 21:06:49 | ezio.melotti | set | nosy:
- eric.araujo, r.david.murray messages: + msg171545 |
| 2012年09月28日 15:47:10 | ezio.melotti | set | messages: + msg171496 |
| 2012年09月28日 15:28:58 | ezio.melotti | set | messages: + msg171493 |
| 2012年09月25日 18:37:29 | ezio.melotti | set | files: + entities.py |
| 2012年09月04日 09:13:26 | ezio.melotti | set | messages: + msg169819 |
| 2012年09月01日 19:24:53 | ezio.melotti | set | files:
+ b17f9a10235f.diff keywords: + patch |
| 2012年09月01日 19:24:23 | ezio.melotti | set | hgrepos: + hgrepo148 |
| 2012年07月28日 15:22:47 | ezio.melotti | set | priority: low nosy: - python-dev messages: + msg166660 keywords: + easy, - patch resolution: fixed -> later |
| 2012年07月01日 21:18:53 | python-dev | set | messages: + msg164499 |
| 2012年07月01日 21:08:54 | python-dev | set | messages: + msg164498 |
| 2012年07月01日 14:58:56 | python-dev | set | messages: + msg164482 |
| 2012年05月22日 01:04:37 | r.david.murray | set | nosy:
+ r.david.murray messages: + msg161311 |
| 2012年04月17日 04:29:16 | ezio.melotti | set | messages: + msg158528 |
| 2012年02月23日 04:26:19 | eric.araujo | set | nosy:
+ eric.araujo messages: + msg154050 |
| 2011年11月27日 02:08:18 | python-dev | set | messages: + msg148435 |
| 2011年11月13日 16:45:21 | python-dev | set | status: open -> closed nosy: + python-dev messages: + msg147558 resolution: fixed stage: test needed -> resolved |
| 2011年11月13日 16:45:03 | ezio.melotti | set | status: closed -> open nosy: - python-dev resolution: fixed -> (no value) stage: resolved -> test needed |
| 2011年11月13日 16:41:32 | python-dev | set | status: open -> closed nosy: + python-dev messages: + msg147556 resolution: fixed stage: test needed -> resolved |
| 2011年11月13日 16:40:17 | ezio.melotti | set | status: closed -> open nosy: - python-dev resolution: fixed -> (no value) stage: resolved -> test needed |
| 2011年10月06日 10:55:50 | ezio.melotti | set | messages: + msg144991 |
| 2011年10月06日 10:50:52 | ezio.melotti | set | files:
+ unnamed, issue12753-3.diff messages: + msg144990 |
| 2011年10月06日 10:48:52 | ezio.melotti | set | files:
+ issue12753-3.diff messages: + msg144989 |
| 2011年10月06日 10:41:32 | ezio.melotti | set | files:
+ unnamed, issue12753-3.diff messages: + msg144988 |
| 2011年10月06日 10:39:47 | ezio.melotti | set | nosy:
- vsemionov |
| 2011年09月29日 22:20:30 | vsemionov | set | hgrepos: - hgrepo78 |
| 2011年09月29日 22:20:16 | vsemionov | set | hgrepos:
+ hgrepo78 messages: + msg144644 |
| 2011年09月29日 22:19:21 | vsemionov | set | files:
+ test.txt messages: + msg144643 |
| 2011年09月29日 22:18:07 | vsemionov | set | nosy:
+ vsemionov messages: + msg144642 |
| 2011年09月01日 13:03:52 | python-dev | set | status: open -> closed messages: + msg143322 nosy: + python-dev |
| 2011年09月01日 13:02:11 | ezio.melotti | set | status: closed -> open |
| 2011年08月09日 03:37:02 | ezio.melotti | set | hgrepos: - hgrepo53 |
| 2011年08月09日 03:35:40 | ezio.melotti | set | hgrepos: + hgrepo53 |
| 2011年08月09日 03:33:36 | ezio.melotti | set | hgrepos: - hgrepo52 |
| 2011年08月09日 03:29:33 | ezio.melotti | set | hgrepos: + hgrepo52 |
| 2011年07月22日 22:42:34 | ezio.melotti | set | nosy:
- loewis |
| 2011年07月22日 22:41:05 | ezio.melotti | set | nosy:
+ loewis messages: + msg70327 |
| 2011年07月22日 22:40:49 | ezio.melotti | set | messages: - msg70327 |
| 2011年04月14日 19:31:38 | loewis | set | files: + foo |
| 2011年04月13日 23:12:54 | pitrou | set | files: + sometext.txt |
| 2011年04月03日 16:42:46 | ezio.melotti | set | messages: + msg132862 |
| 2011年03月23日 15:50:48 | ezio.melotti | set | priority: release blocker -> (no value) assignee: r.david.murray -> (no value) nosy: + ezio.melotti, - georg.brandl, r.david.murray, python-dev |
| 2011年03月23日 15:50:09 | ezio.melotti | set | priority: release blocker nosy: + georg.brandl, - pitrou versions: + Python 3.2 |
| 2011年03月23日 15:49:54 | ezio.melotti | set | nosy:
- georg.brandl, ezio.melotti |
| 2011年03月23日 15:49:26 | ezio.melotti | set | assignee: r.david.murray nosy: + r.david.murray |
| 2011年03月23日 15:48:30 | ezio.melotti | set | messages: + msg131887 |
| 2011年03月23日 14:33:40 | ezio.melotti | set | nosy:
georg.brandl, pitrou, ezio.melotti, python-dev messages: + msg131877 |
| 2011年03月23日 14:33:21 | ezio.melotti | set | nosy:
+ ezio.melotti messages: + msg131876 |
| 2011年03月13日 18:22:10 | loewis | set | status: open -> closed |
| 2011年03月13日 16:20:55 | loewis | set | status: closed -> open |
| 2011年03月13日 16:20:36 | loewis | set | status: open -> closed |
| 2011年03月13日 16:20:24 | loewis | set | status: closed -> open |
| 2011年03月13日 16:16:24 | loewis | set | files: + 6a1c8fcce229.diff |
| 2011年03月13日 15:56:55 | loewis | set | hgrepos: + hgrepo2 |
| 2011年03月13日 15:45:59 | loewis | set | hgrepos: + hgrepo1 |
| 2011年03月13日 15:12:57 | python-dev | set | status: open -> closed messages: + msg130746 resolution: fixed stage: resolved |
| 2011年03月13日 15:12:26 | ezio.melotti | set | status: closed -> open resolution: fixed -> (no value) |
| 2011年03月12日 23:32:43 | python-dev | set | status: open -> closed messages: + msg130711 resolution: fixed |
| 2011年03月12日 23:30:33 | python-dev | set | messages: + msg130708 |
| 2011年03月12日 23:28:20 | pitrou | set | status: closed -> open resolution: fixed -> (no value) |
| 2011年03月08日 20:37:03 | python-dev | set | messages: + msg130371 |
| 2011年03月08日 19:57:55 | python-dev | set | messages: + msg130365 |
| 2011年03月08日 19:56:08 | python-dev | set | messages: + msg130364 |
| 2011年03月08日 19:55:24 | python-dev | set | messages: + msg130363 |
| 2011年03月08日 19:53:16 | python-dev | set | messages: + msg130360 |
| 2011年03月08日 19:51:32 | python-dev | set | messages: + msg130359 |
| 2011年03月08日 19:50:57 | python-dev | set | messages: + msg130358 |
| 2011年03月08日 19:50:35 | python-dev | set | messages: + msg130357 |
| 2011年03月08日 19:47:05 | python-dev | set | messages: + msg130356 |
| 2011年03月08日 19:46:55 | python-dev | set | messages: + msg130355 |
| 2011年03月08日 19:46:12 | python-dev | set | messages: + msg130354 |
| 2011年03月08日 19:42:17 | python-dev | set | messages: + msg130353 |
| 2011年03月08日 19:40:15 | python-dev | set | nosy:
+ python-dev messages: + msg130352 |
| 2011年03月08日 12:56:39 | pitrou | set | nosy:
+ pitrou messages: + msg130328 |
| 2011年03月08日 11:20:51 | georg.brandl | set | status: open -> closed messages: + msg130325 resolution: not a bug -> fixed |
| 2011年03月08日 11:19:54 | georg.brandl | set | nosy:
- pitrou, ezio.melotti |
| 2011年03月08日 11:18:14 | pitrou | set | nosy:
+ pitrou messages: + msg130323 |
| 2011年03月08日 11:09:12 | georg.brandl | set | status: closed -> open |
| 2011年03月08日 11:07:39 | georg.brandl | set | messages: + msg130320 |
| 2011年03月08日 10:36:32 | georg.brandl | set | messages: + msg130318 |
| 2011年03月08日 10:34:08 | georg.brandl | set | messages: + msg130317 |
| 2011年03月08日 10:32:28 | georg.brandl | set | messages: + msg130316 |
| 2011年03月08日 10:30:02 | georg.brandl | set | messages: + msg130315 |
| 2011年03月08日 10:29:06 | georg.brandl | set | title: new commit -> Test issue |
| 2011年03月08日 10:28:55 | georg.brandl | set | messages: + msg130314 |
| 2011年03月08日 10:26:37 | georg.brandl | set | nosy:
+ georg.brandl title: test issue -> new commit messages: + msg130313 |
| 2011年03月06日 18:06:10 | loewis | set | status: open -> closed |
| 2011年03月06日 16:51:25 | loewis | set | status: closed -> open |
| 2011年03月06日 16:49:20 | loewis | set | files: + a.diff |
| 2011年03月06日 05:45:54 | ezio.melotti | set | nosy:
+ ezio.melotti |
| 2011年03月06日 03:33:16 | ned.deily | set | nosy:
- ned.deily -> (no value) |
| 2011年03月06日 03:32:48 | ned.deily | set | messages: - msg130140 |
| 2011年03月06日 03:32:32 | ned.deily | set | messages: - msg130139 |
| 2011年03月06日 03:31:43 | ned.deily | set | messages: + msg130141 |
| 2011年03月06日 03:25:11 | ned.deily | set | messages: + msg130140 |
| 2011年03月06日 03:14:07 | ned.deily | set | nosy:
+ ned.deily, - ezio.melotti messages: + msg130139 |
| 2010年12月15日 02:57:55 | ezio.melotti | set | priority: release blocker -> (no value) nosy: - georg.brandl versions: - Python 3.2 |
| 2010年12月15日 02:57:42 | ezio.melotti | set | priority: release blocker nosy: + georg.brandl |
| 2010年12月15日 02:57:35 | ezio.melotti | set | priority: release blocker -> (no value) nosy: - georg.brandl |
| 2010年12月15日 02:57:24 | ezio.melotti | set | nosy:
+ georg.brandl versions: + Python 3.2 |
| 2010年12月15日 02:53:35 | ezio.melotti | set | priority: release blocker nosy: - georg.brandl |
| 2010年12月15日 02:52:20 | ezio.melotti | set | priority: release blocker -> (no value) versions: - Python 3.2 |
| 2010年12月15日 02:52:11 | ezio.melotti | set | priority: release blocker nosy: + georg.brandl versions: + Python 3.2 |
| 2010年12月15日 02:51:59 | ezio.melotti | set | versions: - Python 3.3 |
| 2010年12月15日 02:51:54 | ezio.melotti | set | priority: release blocker -> (no value) |
| 2010年12月15日 02:51:49 | ezio.melotti | set | versions: + Python 3.3 |
| 2010年12月15日 02:28:01 | ezio.melotti | set | priority: deferred blocker -> release blocker versions: - Python 3.2 |
| 2010年12月15日 02:27:54 | ezio.melotti | set | priority: release blocker -> deferred blocker nosy: - georg.brandl |
| 2010年12月15日 02:27:30 | ezio.melotti | set | priority: deferred blocker -> release blocker nosy: + georg.brandl versions: + Python 3.2 |
| 2010年12月15日 02:27:21 | ezio.melotti | set | priority: release blocker -> deferred blocker versions: - Python 3.2 |
| 2010年12月15日 01:44:46 | ezio.melotti | set | priority: normal -> release blocker versions: + Python 3.2 |
| 2010年12月15日 01:44:35 | ezio.melotti | set | nosy:
- loewis, barry, georg.brandl, ajaksu2, benjamin.peterson versions: - Python 2.6, Python 3.1, Python 2.7, Python 3.2 |
| 2010年12月15日 01:20:33 | ezio.melotti | set | priority: release blocker -> normal nosy: loewis, barry, georg.brandl, ajaksu2, benjamin.peterson, ezio.melotti messages: + msg123997 |
| 2010年12月15日 01:18:49 | ezio.melotti | set | priority: normal -> release blocker nosy: + barry, ezio.melotti, benjamin.peterson, georg.brandl messages: + msg123996 |
| 2010年12月15日 01:18:12 | ezio.melotti | set | nosy:
loewis, ajaksu2 versions: + Python 2.6, Python 3.1, Python 2.7, Python 3.2 |
| 2010年10月01日 22:09:32 | loewis | set | files:
+ README.diff keywords: + patch messages: + msg117840 |
| 2009年04月07日 15:09:30 | ajaksu2 | set | messages: + msg85712 |
| 2009年04月07日 15:06:42 | ajaksu2 | set | messages: + msg85711 |
| 2009年04月07日 15:03:53 | ajaksu2 | set | messages: + msg85709 |
| 2009年04月07日 14:57:09 | ajaksu2 | set | messages: + msg85707 |
| 2009年04月07日 14:54:54 | ajaksu2 | set | messages: + msg85706 |
| 2009年04月07日 14:53:40 | ajaksu2 | set | messages: + msg85704 |
| 2009年04月07日 14:51:41 | ajaksu2 | set | messages: + msg85703 |
| 2009年03月10日 16:22:15 | ajaksu2 | set | messages: + msg83438 |
| 2009年03月06日 14:42:32 | ajaksu2 | set | messages: + msg83245 |
| 2009年03月06日 14:40:01 | ajaksu2 | set | messages: + msg83244 |
| 2009年03月06日 05:29:10 | ajaksu2 | set | nosy:
+ ajaksu2 messages: + msg83238 |
| 2009年02月19日 20:29:47 | loewis | set | messages: + msg82496 |
| 2009年02月19日 20:28:58 | loewis | set | messages: + msg82495 |
| 2009年02月19日 19:58:52 | loewis | set | messages: + msg82492 |
| 2008年07月27日 17:54:36 | loewis | set | nosy:
+ loewis messages: + msg70327 |
| 2008年05月05日 16:41:29 | gvanrossum | set | status: open -> closed nosy: - gvanrossum resolution: not a bug |
| 2008年05月05日 16:40:44 | gvanrossum | create | |