Georg Brandl added the comment:
There is indeed a problem with the patch: the BOM is put in front of the angle
brackets indicating the priority/facility, so the syslog can't find it anymore.
The BOM should be put after the brackets.
--
nosy: +georg.brandl
status: closed -&
Georg Brandl added the comment:
Applied in r83201. Thanks!
--
nosy: +georg.brandl
resolution: -> fixed
status: open -> closed
___
Python tracker
<http://bugs.python.org/
Georg Brandl added the comment:
Looks good to me.
--
___
Python tracker
<http://bugs.python.org/issue1682942>
___
___
Python-bugs-list mailing list
Unsubscribe:
Georg Brandl added the comment:
Committed an extensively edited patch in r83202. Thanks all!
--
resolution: -> accepted
status: open -> closed
___
Python tracker
<http://bugs.python.org/iss
Georg Brandl added the comment:
Should be fixed now in r83218. I've removed the "class" directives, and put
generic class name substitutes "regex" and "pattern" in the method
descriptions, like we do for "contextmanager.__enter__". I've
Georg Brandl added the comment:
Applied in r83220. The **kwds change for some methods should be done
separately.
--
resolution: -> accepted
status: open -> closed
___
Python tracker
<http://bugs.python.org/
Georg Brandl added the comment:
The culprit was indeed DummyServer.messages. Fixed in r83222.
--
nosy: +georg.brandl
resolution: -> fixed
status: open -> closed
___
Python tracker
<http://bugs.python.org/
Georg Brandl added the comment:
This is very probably a duplicate of #1662581. When testing both your regexes
with the new engine from #2636, the match is not found/found instantaneously.
--
nosy: +georg.brandl
resolution: -> duplicate
status: open -> closed
superseder: -&g
Georg Brandl added the comment:
Wishlist item: could you give the regex and match classes nicer names, so that
they can be referenced as `regex.Pattern` (or `regex.Regex`) and `regex.Match`?
--
___
Python tracker
<http://bugs.python.org/issue2
Georg Brandl added the comment:
Applied with some tweaks in r83223. Thanks Jeff and Terry!
--
nosy: +georg.brandl
resolution: -> fixed
status: open -> closed
___
Python tracker
<http://bugs.python.org/
Georg Brandl added the comment:
Sounds like a good addition to me.
--
assignee: -> bethard
nosy: +georg.brandl
___
Python tracker
<http://bugs.python.org/iss
Georg Brandl added the comment:
Yes, the current wording in the PEP should be sufficient.
--
resolution: -> fixed
status: open -> closed
___
Python tracker
<http://bugs.python.org/is
Georg Brandl added the comment:
Isn't the usual way to use "make -s" if you don't want echoed commands?
--
nosy: +georg.brandl
___
Python tracker
<http://bu
Changes by Georg Brandl :
--
assignee: georg.brandl ->
priority: high -> normal
___
Python tracker
<http://bugs.python.org/issue5945>
___
___
Python-bugs-
Changes by Georg Brandl :
--
assignee: georg.brandl ->
___
Python tracker
<http://bugs.python.org/issue8077>
___
___
Python-bugs-list mailing list
Unsubscri
Georg Brandl added the comment:
Setting #1504333 which has a patch as superseder.
--
nosy: +georg.brandl
resolution: -> duplicate
status: open -> closed
superseder: -> sgmllib should allow angle brackets in quoted values
___
Python track
Georg Brandl added the comment:
Well, at least -s is mentioned in my POSIX make(1p) manpage, and I found it in
an online version of the OpenBSD manpages.
--
___
Python tracker
<http://bugs.python.org/issue3
Georg Brandl added the comment:
Committed doc patch similar to Raghuram's in r83226.
--
nosy: +georg.brandl
resolution: -> fixed
status: open -> closed
___
Python tracker
<http://bugs.python.or
Georg Brandl added the comment:
Applied in r83229. Thanks!
--
nosy: +georg.brandl
resolution: -> fixed
status: open -> closed
___
Python tracker
<http://bugs.python.org/
Georg Brandl added the comment:
from_iterable() was marked up wrongly in the itertools docs; this is fixed now
in r83230.
--
___
Python tracker
<http://bugs.python.org/issue7
Georg Brandl added the comment:
This might work for (normally) commutative operations like multiplication and
addition, but what about those like subtraction? If the interpreter uses the
non-reversed method automatically, it has to apply semantics, but the semantics
depend on the type and
Georg Brandl added the comment:
Removed in r83231, thanks.
--
resolution: -> fixed
status: open -> closed
___
Python tracker
<http://bugs.python.org/
Georg Brandl added the comment:
Thanks, fixed in r83232.
--
nosy: +georg.brandl
resolution: -> fixed
status: open -> closed
___
Python tracker
<http://bugs.python.org/
Changes by Georg Brandl :
--
assignee: -> benjamin.peterson
___
Python tracker
<http://bugs.python.org/issue9386>
___
___
Python-bugs-list mailing list
Un
New submission from Georg Brandl :
Currently, the string type has two single-underscore methods, _formatter_parser
and _formatter_field_name_split, that expose details of the new string
formatting implementation to Python, so that it can be used by the
string.Formatter class.
This patch
Georg Brandl added the comment:
I couldn't imagine why a metaclass would want to have a __del__ method...
--
nosy: +georg.brandl
___
Python tracker
<http://bugs.python.org/i
Changes by Georg Brandl :
--
assignee: georg.brandl ->
___
Python tracker
<http://bugs.python.org/issue1581182>
___
___
Python-bugs-list mailing list
Unsubscri
Georg Brandl added the comment:
Done in r83234. Thanks for the suggestion!
--
resolution: -> fixed
status: open -> closed
___
Python tracker
<http://bugs.python.org/
Georg Brandl added the comment:
Whether this is a bug is not clear. Sometimes it's just impossible not to
create cycles, and classes may just be one instance of that.
--
___
Python tracker
<http://bugs.python.org/i
Georg Brandl added the comment:
This is not so easy: the __mro__ tuple, as its name says, is used internally
for method resolution, or finding attributes on the type's bases. __objclass__
is used whenever the descriptor is accessed. These operations are involved in
every method call
Georg Brandl added the comment:
Amaury, any interest in getting this committed for 3.2?
--
nosy: +georg.brandl
___
Python tracker
<http://bugs.python.org/issue1195
Georg Brandl added the comment:
code.runsource() uses the "single" start symbol by default, which will parse
only a single statement. Only your second snippet is a single statement, while
the others are two statements.
--
nosy: +georg.brandl
resolution: -> invalid
Georg Brandl added the comment:
Cannot reproduce with current 3.2 trunk, closing.
--
resolution: -> out of date
status: open -> closed
___
Python tracker
<http://bugs.python.org/
Georg Brandl added the comment:
I'm quite sure nobody will want to do anything about it...
--
nosy: +georg.brandl
status: open -> languishing
___
Python tracker
<http://bugs.python.or
Georg Brandl added the comment:
Added in r83236.
--
nosy: +georg.brandl
resolution: -> fixed
status: open -> closed
___
Python tracker
<http://bugs.python.org/
Georg Brandl added the comment:
I don't think optparse will get this update -- new features should go into
argparse instead.
--
nosy: +georg.brandl
resolution: -> out of date
status: open -> closed
___
Python tracker
<http://b
Georg Brandl added the comment:
Alan, I've updated the patch for current 3.2 trunk, see attached, but the new
test now fails. Can you find out why?
--
nosy: +georg.brandl
versions: +Python 3.2 -Python 2.7
Added file: http://bugs.python.org/file18257/zipfile_empty
Georg Brandl added the comment:
Closing in favor of #2636, which allows this regex to be compiled.
--
resolution: -> out of date
status: open -> closed
superseder: -> Regexp 2.7 (modifications to current re 2.2.2)
___
Python track
Georg Brandl added the comment:
Thanks for the patch, fixed in r83238.
--
nosy: +georg.brandl
resolution: -> fixed
status: open -> closed
___
Python tracker
<http://bugs.python.org/
Georg Brandl added the comment:
Same here.
--
nosy: +georg.brandl
resolution: -> out of date
status: open -> closed
___
Python tracker
<http://bugs.python.org/iss
Georg Brandl added the comment:
This is caused by the fact that new-style classes create reference cycles. Try
calling the cyclic garbage collector using gc.collect() after the function
call, and the leaked references will vanish again.
--
nosy: +georg.brandl
resolution
Georg Brandl added the comment:
Thanks! Reopening.
--
components: +Library (Lib)
stage: -> patch review
status: languishing -> open
type: -> behavior
versions: +Python 3.1, Python 3.2 -Python 2.5, Python 2.6
___
Python track
Georg Brandl added the comment:
Implemented in r83260. Thanks for the patch!
--
resolution: -> accepted
status: open -> closed
___
Python tracker
<http://bugs.python.org/
Georg Brandl added the comment:
Thanks, fixed in r83261.
--
nosy: +georg.brandl
resolution: -> fixed
status: open -> closed
___
Python tracker
<http://bugs.python.org/
Georg Brandl added the comment:
Thanks for the patience, this is now fixed in r83262.
I also added a -c option so that you can give the "continue" on the command
line, not put it in the .pdbrc file.
--
nosy: +georg.brandl
resolution: -> fixed
status: o
Georg Brandl added the comment:
This is fixed in py3k trunk by other means; exec() now accepts bytestrings with
"unusual" newlines.
--
nosy: +georg.brandl
resolution: -> out of date
status: open -> closed
___
Pytho
Georg Brandl added the comment:
Fixed in r83265. Thanks!
--
nosy: +georg.brandl
resolution: -> fixed
status: open -> closed
___
Python tracker
<http://bugs.python.org/
Georg Brandl added the comment:
Committed in trunk r83266; file objects are no longer allowed for exec(),
therefore I dropped mentions of that.
--
nosy: +georg.brandl
resolution: -> fixed
status: open -> closed
___
Python tracker
Georg Brandl added the comment:
Thanks, applied to 2.7 branch in r83267.
--
nosy: +georg.brandl
resolution: -> fixed
status: open -> closed
___
Python tracker
<http://bugs.python.org/
Georg Brandl added the comment:
Thanks, applied to 3k in r83268.
--
nosy: +georg.brandl
resolution: -> fixed
status: open -> closed
___
Python tracker
<http://bugs.python.org/
Georg Brandl added the comment:
I think this is just too complicated to implement in a sane way. doctest+pdb
is just a bit too hacky to be fully supported.
--
nosy: +georg.brandl
resolution: -> wont fix
status: open -> closed
___
Python t
Georg Brandl added the comment:
Thanks, applied in r83269.
--
nosy: +georg.brandl
resolution: -> fixed
status: open -> closed
___
Python tracker
<http://bugs.python.org/
Georg Brandl added the comment:
Fixed in r83271. I think the first patch's approach is better, since it does
not affect pdb, only doctest's adaption of pdb. Consequently, I couldn't use
the test case; thanks anyway for that!
--
resolution: -> fixed
stat
Georg Brandl added the comment:
Fixed in r83272 with a slightly different patch. Thanks very much for the
report!
--
nosy: +georg.brandl
resolution: -> fixed
status: open -> closed
___
Python tracker
<http://bugs.python.org/
Georg Brandl added the comment:
Now used in trunk docs, r83274.
--
resolution: remind -> fixed
status: open -> closed
___
Python tracker
<http://bugs.python.org/
Georg Brandl added the comment:
Thanks for the patch; I've committed a modified and extended version in r83275.
--
resolution: -> accepted
status: open -> closed
___
Python tracker
<http://bugs.python.o
Georg Brandl added the comment:
Yes, you're right. Committed in r83283.
--
___
Python tracker
<http://bugs.python.org/issue7964>
___
___
Python-bugs-list m
Georg Brandl added the comment:
This has been implemented in the course of r83286.
--
nosy: +georg.brandl
resolution: -> fixed
status: open -> closed
___
Python tracker
<http://bugs.python.org/iss
Georg Brandl added the comment:
This is no special behavior with generators. If you remove the "yield"
statement, you will get similar output with the exception bubbling up the stack.
--
nosy: +georg.brandl
resolution: -> works for me
status: o
Georg Brandl added the comment:
I committed the "commands" part of the patch in r83308.
For the SIGINT part, I'm concerned that the SIGINT handler is set
in the Pdb constructor, since it's a processwide setting I think it
should a) be set only before sys.settrace(
Georg Brandl added the comment:
Adding the rest of the patch adapted for py3k trunk as of today.
--
keywords: +patch
Added file: http://bugs.python.org/file18277/pdb-keyboardinterrupt.diff
___
Python tracker
<http://bugs.python.org/issue7
Georg Brandl added the comment:
Deferring to after 3.2a1.
--
priority: release blocker -> deferred blocker
___
Python tracker
<http://bugs.python.org/iss
Georg Brandl added the comment:
This will have to wait until after alpha1, as well.
--
dependencies: +Rewrite import machinery to work with unicode paths
nosy: +georg.brandl
priority: release blocker -> deferred blocker
___
Python tracker
&l
Georg Brandl added the comment:
Committed 2.6 patch in r83314.
--
___
Python tracker
<http://bugs.python.org/issue2986>
___
___
Python-bugs-list mailin
Georg Brandl added the comment:
Committed in r83341.
--
nosy: +georg.brandl
resolution: -> fixed
status: open -> closed
___
Python tracker
<http://bugs.python.org/
Georg Brandl added the comment:
I'd say keep the AttributeError too. This is not different from many other
functions that fail variously with random types fed into them.
--
nosy: +georg.brandl
status: open -> closed
___
Python tracke
Georg Brandl added the comment:
getopt.error is now in 3k for a few releases, so the opportunity to remove is
gone.
--
nosy: +georg.brandl
resolution: -> wont fix
status: open -> closed
___
Python tracker
<http://bugs.python.org/
Changes by Georg Brandl :
--
assignee: -> benjamin.peterson
nosy: +benjamin.peterson
___
Python tracker
<http://bugs.python.org/issue9431>
___
___
Python-
Changes by Georg Brandl :
--
assignee: -> benjamin.peterson
nosy: +benjamin.peterson
___
Python tracker
<http://bugs.python.org/issue9429>
___
___
Python-
Changes by Georg Brandl :
--
priority: release blocker -> deferred blocker
___
Python tracker
<http://bugs.python.org/issue9116>
___
___
Python-bugs-list mai
New submission from Georg Brandl :
Noticed it in 3.2a1, but probably present on other branches. It should not
fail, but skip these tests.
--
assignee: tarek
components: Distutils
messages: 112157
nosy: georg.brandl, tarek
priority: normal
severity: normal
stage: needs patch
status
Changes by Georg Brandl :
--
title: Add Unladden Swallow's optimizations to Python 3's pickle. -> Add
Unladen Swallow's optimizations to Python 3's pickle.
___
Python tracker
<http:/
New submission from Georg Brandl :
The last assertion in TestDateTime.test_microsecond_rounding does not test a
predictable outcome. For example, on my box it passes with pydebug enabled and
fails without. It should just be removed.
--
assignee: belopolsky
components: Tests
messages
Georg Brandl added the comment:
Removed in r83352.
--
resolution: -> fixed
status: open -> closed
___
Python tracker
<http://bugs.python.org/issue9440>
___
__
Changes by Georg Brandl :
--
priority: deferred blocker -> release blocker
___
Python tracker
<http://bugs.python.org/issue2986>
___
___
Python-bugs-list mai
Changes by Georg Brandl :
--
priority: deferred blocker -> release blocker
___
Python tracker
<http://bugs.python.org/issue9116>
___
___
Python-bugs-list mai
Changes by Georg Brandl :
--
priority: deferred blocker -> release blocker
___
Python tracker
<http://bugs.python.org/issue8611>
___
___
Python-bugs-list mai
Georg Brandl added the comment:
No objections noted, closing.
--
status: pending -> closed
___
Python tracker
<http://bugs.python.org/issue8638>
___
___
Py
Georg Brandl added the comment:
Closing now.
--
nosy: +georg.brandl
resolution: out of date -> wont fix
status: pending -> closed
___
Python tracker
<http://bugs.python.org/
Georg Brandl added the comment:
Fixed in r83354.
--
nosy: +georg.brandl
resolution: -> fixed
status: open -> closed
___
Python tracker
<http://bugs.python.org/
Georg Brandl added the comment:
#9272 has a patch.
--
nosy: +georg.brandl
resolution: -> duplicate
status: open -> closed
superseder: -> CGIHTTPServer poisons os.environ
___
Python tracker
<http://bugs.python.org/
Georg Brandl added the comment:
Hmm, in Python/getcompiler.c there is an explicit \n before [GCC ...], and this
is why:
r17259 | gvanrossum | 2000-09-05 06:40:39 +0200 (Di, 05. Sep 2000)
The GCC version is loong
Georg Brandl added the comment:
In light of #9061, it should also start quoting single quotes when the arg is
true.
Since this function is called a LOT, it might also make sense to trivially
implement it in C.
If there are no objections, I can do that for 3.2.
--
nosy
Georg Brandl added the comment:
Duplicate of #8198.
--
nosy: +georg.brandl
resolution: -> duplicate
status: open -> closed
superseder: -> Importing pydoc and overwriting sys.stdout, causes one char to
be sent to the console when cal
Georg Brandl added the comment:
In Python 3, due to the new class creation the somewhat confusing message
augmentation has been removed altogether, and for me there seems to be no way
to add a better message about base class types somewhere without making too
many assumptions
Changes by Georg Brandl :
--
priority: normal -> release blocker
___
Python tracker
<http://bugs.python.org/issue9061>
___
___
Python-bugs-list mailing list
Un
Georg Brandl added the comment:
Agreed. I've also added a sentence in the docs (r83357) that a newline may be
present.
--
resolution: -> wont fix
status: open -> closed
___
Python tracker
<http://bugs.python
Georg Brandl added the comment:
Yes, this is even better than my fix for #5778. Changed in r83358 to:
A string containing the version number of the Python interpreter plus
additional
information on the build number and compiler used. This string is displayed
when the interactive
Georg Brandl added the comment:
For 3.x, the builtin io.StringIO and io.BytesIO already have context manager
capability. Added fileinput in r83359.
--
resolution: -> accepted
status: open -> closed
___
Python tracker
<http://bugs.p
Georg Brandl added the comment:
I think it meant that '3.2' is the string used for determining the
/usr/lib/python3.2 directory name.
--
___
Python tracker
<http://bugs.python.
Georg Brandl added the comment:
Committed new tests together with extensive cleanup of http.cookies in r83361,
coverage is now at 95%.
--
nosy: +georg.brandl
resolution: -> accepted
status: open -> closed
___
Python tracker
Georg Brandl added the comment:
Now that htmllib has been removed in Python 3, I don't think this is worth
working on. As Richard notes, it is much more useful to use a dedicated parser
insensitive to all kinds of wrong markup anyway.
--
nosy: +georg.brandl
resolution: ->
Georg Brandl added the comment:
I don't see the bug here.
--
nosy: +georg.brandl
resolution: -> works for me
status: open -> closed
___
Python tracker
<http://bugs.python.or
Georg Brandl added the comment:
Don't think this qualifies for 2.6 anymore.
--
nosy: +georg.brandl
status: open -> closed
___
Python tracker
<http://bugs.python.org/i
Georg Brandl added the comment:
Added in r83362.
--
nosy: +georg.brandl
resolution: -> fixed
status: open -> closed
___
Python tracker
<http://bugs.python.org/
Georg Brandl added the comment:
Duplicate of #1019882.
--
nosy: +georg.brandl
resolution: -> duplicate
status: open -> closed
superseder: -> hotshot start / stop stats bug
___
Python tracker
<http://bugs.python.o
Georg Brandl added the comment:
#1375 has a patch.
--
nosy: +georg.brandl
___
Python tracker
<http://bugs.python.org/issue1019882>
___
___
Python-bugs-list mailin
Georg Brandl added the comment:
Fixed in r83365 with patch from #1375.
--
resolution: -> fixed
status: open -> closed
versions: +Python 2.7 -Python 2.6
___
Python tracker
<http://bugs.python.org/iss
Georg Brandl added the comment:
Followed Amaury's suggestion in r83368. \\.\ and \\?\ as prefixes now cause
normpath() to return the argument as-is.
--
nosy: +georg.brandl
resolution: -> fixed
status: open -> closed
___
Python tra
Georg Brandl added the comment:
Fixed in r83370 by making input and output properties -- as Daniel noted, that
is a nice and backwards compatible solution.
--
nosy: +georg.brandl
resolution: -> fixed
status: open -> closed
___
Python t
4701 - 4800 of 5257 matches
Mail list logo