Georg Brandl added the comment:
Agreed.
--
nosy: +georg.brandl
resolution: -> rejected
status: pending -> closed
___
Python tracker
<http://bugs.python.org/
Georg Brandl added the comment:
Closing due to lack of feedback.
--
nosy: +georg.brandl
resolution: -> works for me
status: pending -> closed
___
Python tracker
<http://bugs.python.org/i
Georg Brandl added the comment:
Closing due to lack of feedback.
--
nosy: +georg.brandl
resolution: -> out of date
status: pending -> closed
___
Python tracker
<http://bugs.python.org/i
Changes by Georg Brandl :
--
status: pending -> closed
___
Python tracker
<http://bugs.python.org/issue10196>
___
___
Python-bugs-list mailing list
Unsubscrib
Changes by Georg Brandl :
--
versions: +Python 3.4 -Python 2.6, Python 3.1, Python 3.2
___
Python tracker
<http://bugs.python.org/issue8579>
___
___
Python-bug
Changes by Georg Brandl :
--
dependencies: +MINGW: generalization of posix installation in distutils, MINGW:
install import library, MINGW: support stdcall without underscore, MINGW: use
replace instead rename to avoid failure on windows
___
Python
Georg Brandl added the comment:
Thanks for the patch!
--
nosy: +georg.brandl
___
Python tracker
<http://bugs.python.org/issue18714>
___
___
Python-bugs-list mailin
Georg Brandl added the comment:
Looks ok for now.
--
nosy: +georg.brandl
___
Python tracker
<http://bugs.python.org/issue19248>
___
___
Python-bugs-list mailin
Georg Brandl added the comment:
The attached patch fixes two instances of PyErr_Display being called without
the traceback properly set on the exception object.
--
keywords: +patch
nosy: +georg.brandl, pitrou
Added file: http://bugs.python.org/file32094/set_traceback.patch
Georg Brandl added the comment:
Sounds reasonable at least for 3.4.
--
nosy: +georg.brandl
___
Python tracker
<http://bugs.python.org/issue18527>
___
___
Pytho
Georg Brandl added the comment:
With your patch, can the SetTraceback in PyErr_Print be removed?
Or should PyErr_Display only set the tb if there is none on the object already?
--
___
Python tracker
<http://bugs.python.org/issue18
Georg Brandl added the comment:
Unfortunately, this is impossible to fix with the current implementation, which
only tokenizes the source. A full parse would be necessary.
Since this is just a minor inconvenience (and there are many situations where
the source cannot be found at all), I
Georg Brandl added the comment:
LGTM.
--
___
Python tracker
<http://bugs.python.org/issue4965>
___
___
Python-bugs-list mailing list
Unsubscribe:
Georg Brandl added the comment:
This is already fixed in the 3.3 branch (see #17938); it will be updated for
pydoc "automatically" before the next bugfix release (the actual content comes
from Lib/pydoc_data/topics.py).
--
nosy: +georg.brandl
resolution: -> fixed
Georg Brandl added the comment:
I assume you have a use case?
--
nosy: +georg.brandl
___
Python tracker
<http://bugs.python.org/issue19251>
___
___
Python-bug
Georg Brandl added the comment:
Can't reproduce with current 3.3 tip.
--
nosy: +georg.brandl
resolution: -> out of date
status: open -> pending
___
Python tracker
<http://bugs.python.
Georg Brandl added the comment:
I'll keep the class attribute for compatibility, but will remove the local
assignment.
--
nosy: +georg.brandl
___
Python tracker
<http://bugs.python.org/is
Changes by Georg Brandl :
--
assignee: -> docs@python
components: +Documentation
nosy: +docs@python
___
Python tracker
<http://bugs.python.org/issu
Georg Brandl added the comment:
Is there still any interest in this?
--
nosy: +georg.brandl
___
Python tracker
<http://bugs.python.org/issue1539925>
___
___
Pytho
Georg Brandl added the comment:
IMO we always use 1-based numbering when counting things.
Try e.g.
>>> format('a', None)
Traceback (most recent call last):
File "", line 1, in
TypeError: format expects arg 2 to be string or unicode, not NoneType
--
n
New submission from Georg Brandl:
Follow-up to #6624. This issue changed a call to seterror() whose last argument
is supposed to be NULL or a "custom error message" given by the ";message"
format character. This had two effects:
* the custom message (if present) is
Georg Brandl added the comment:
Closing as a packaging-related bug.
--
nosy: +georg.brandl
resolution: -> out of date
status: open -> closed
___
Python tracker
<http://bugs.python.org/i
Georg Brandl added the comment:
The NNTP server seems to be violating the protocol; it is supposed to convert
tab characters in the fields to spaces. It appears that in your example the
list of references was separated by a tab character, which Python then
(correctly) interprets as separator
Georg Brandl added the comment:
You'll have to put a copy in sphinxext/static.
--
___
Python tracker
<http://bugs.python.org/issue4965>
___
___
Python-bugs-l
Georg Brandl added the comment:
The text talks about containers which, although often the case, is not general
enough; copy() and deepcopy() can work with any object.
--
___
Python tracker
<http://bugs.python.org/issue14
Georg Brandl added the comment:
I fixed some items from Ezio's list that I think were legitimate; the rest is
mostly invalid.
--
nosy: +georg.brandl
___
Python tracker
<http://bugs.python.org/is
Georg Brandl added the comment:
Python-ast.c can't be changed; it is auto-generated. But the whole thing can
be handled in compile.c I think -- see attached patch. Test suite passes
(except for test_dis, which checks compilation result against a given list of
bytecodes).
--
Georg Brandl added the comment:
I'll make a complete patch with test suite additions (and fixing test_dis) if
this is deemed to be a correct approach.
--
___
Python tracker
<http://bugs.python.org/is
Changes by Georg Brandl :
--
nosy: +bquinlan
___
Python tracker
<http://bugs.python.org/issue14407>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Georg Brandl :
--
nosy: +benjamin.peterson
___
Python tracker
<http://bugs.python.org/issue11646>
___
___
Python-bugs-list mailing list
Unsubscribe:
Georg Brandl added the comment:
Is this still the case with Python 2.7?
--
nosy: +georg.brandl
resolution: -> out of date
status: open -> pending
___
Python tracker
<http://bugs.python.org/
Changes by Georg Brandl :
--
assignee: -> dmalcolm
nosy: +dmalcolm
___
Python tracker
<http://bugs.python.org/issue15817>
___
___
Python-bugs-list mai
Georg Brandl added the comment:
If you know you have an expression and would like the value, you should use the
"eval" mode.
In the case of "single", you can adapt sys.displayhook to change where to print
(if at all) the values. Note that "single" sometimes pr
Changes by Georg Brandl :
--
versions: -Python 3.2
___
Python tracker
<http://bugs.python.org/issue17095>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Georg Brandl :
--
nosy: +eli.bendersky
___
Python tracker
<http://bugs.python.org/issue16425>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Georg Brandl :
--
nosy: +brett.cannon
___
Python tracker
<http://bugs.python.org/issue16845>
___
___
Python-bugs-list mailing list
Unsubscribe:
Georg Brandl added the comment:
The "refs" output is only active in debug mode, and only for debugging. It is
printed directly to stderr using C fprintf(), I don't think it's worth the
complication.
--
nosy: +georg.brandl
resolution: -> wont fix
Changes by Georg Brandl :
--
nosy: +bethard
___
Python tracker
<http://bugs.python.org/issue15613>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Georg Brandl :
--
nosy: +sbt
___
Python tracker
<http://bugs.python.org/issue15440>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Georg Brandl :
--
versions: +Python 3.4
___
Python tracker
<http://bugs.python.org/issue15371>
___
___
Python-bugs-list mailing list
Unsubscribe:
Georg Brandl added the comment:
Sounds good to me.
--
nosy: +georg.brandl
___
Python tracker
<http://bugs.python.org/issue18300>
___
___
Python-bugs-list mailin
Changes by Georg Brandl :
--
nosy: +pitrou
___
Python tracker
<http://bugs.python.org/issue18209>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Georg Brandl :
--
nosy: +pitrou
___
Python tracker
<http://bugs.python.org/issue18068>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Georg Brandl :
--
nosy: +barry, ned.deily
___
Python tracker
<http://bugs.python.org/issue18096>
___
___
Python-bugs-list mailing list
Unsubscribe:
Georg Brandl added the comment:
Only affects 3.2, so this won't be fixed anymore.
--
nosy: +georg.brandl
resolution: -> out of date
status: open -> closed
___
Python tracker
<http://bugs.python.
Georg Brandl added the comment:
Last desperate ping for 3.4?
--
nosy: +georg.brandl
___
Python tracker
<http://bugs.python.org/issue2919>
___
___
Python-bug
Georg Brandl added the comment:
See attached patch, it handles this like all other builtins that don't support
keyword arguments in their constructor.
--
keywords: +patch
nosy: +georg.brandl, pitrou
versions: +Python 2.7, Python 3.3
Added file: http://bugs.python.org/file
Georg Brandl added the comment:
The "rXXX" notation is reserved for SVN revision numbers, which are
unambiguous. The revision numbers in Mercurial are specific to each clone.
Other than that, LGTM.
--
nosy: +georg.brandl
___
Pyth
Changes by Georg Brandl :
--
nosy: +georg.brandl
___
Python tracker
<http://bugs.python.org/issue19258>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Georg Brandl :
--
nosy: +tim.peters
___
Python tracker
<http://bugs.python.org/issue19138>
___
___
Python-bugs-list mailing list
Unsubscribe:
Georg Brandl added the comment:
Agreed. This is not really a bugfix.
--
resolution: -> wont fix
status: open -> closed
___
Python tracker
<http://bugs.python.org/i
Georg Brandl added the comment:
Good point, that is pointless in __init__().
--
___
Python tracker
<http://bugs.python.org/issue17765>
___
___
Python-bugs-list m
Changes by Georg Brandl :
Added file: http://bugs.python.org/file32119/no_weakref_kwargs_2.patch
___
Python tracker
<http://bugs.python.org/issue17765>
___
___
Python-bug
Georg Brandl added the comment:
Updated patch with test suite update.
--
Added file: http://bugs.python.org/file32120/if_else_nojump_2.patch
___
Python tracker
<http://bugs.python.org/issue11
Georg Brandl added the comment:
Issue #6624 wasn't an issue, it should have been "closed-invalid" :)
But you're right, a test case is needed, see new patch.
--
Added file: http://bugs.python.org/file32121/seterror_fix_2.patch
__
Georg Brandl added the comment:
Yep :)
--
___
Python tracker
<http://bugs.python.org/issue11471>
___
___
Python-bugs-list mailing list
Unsubscribe:
Georg Brandl added the comment:
Serhiy, you're welcome to set issues to pending, but please don't forget to
close them after a certain time...
--
status: pending -> open
___
Python tracker
<http://bugs.python.
Changes by Georg Brandl :
--
status: open -> pending
___
Python tracker
<http://bugs.python.org/issue1575020>
___
___
Python-bugs-list mailing list
Unsubscrib
Georg Brandl added the comment:
Thank you for all the effort you put into this!
--
___
Python tracker
<http://bugs.python.org/issue18758>
___
___
Python-bug
Georg Brandl added the comment:
Some new (I assume) ResourceWarnings from test_wave:
/home/gbr/devel/python/Lib/unittest/case.py:571: ResourceWarning: unclosed file
<_io.BufferedWriter name='@test_1974_tmp'>
testMethod()
/home/gbr/devel/python/Lib/chunk.py:61: ResourceWarnin
Georg Brandl added the comment:
> Shouldn't converttuple() in getargs.c set "levels[1] = 0;" after second
> "levels[0] = i+1;"?
I think it is fine, since convertitem() or converttuple() called from
convertitem() will set their levels[0] (which is levels[1] in th
Georg Brandl added the comment:
Closing this one as Fixed, then. Thanks everybody.
--
resolution: -> fixed
status: open -> closed
___
Python tracker
<http://bugs.python.org/i
Georg Brandl added the comment:
#8998 has been closed (among others due to legal concerns), so this need not be
kept open.
--
nosy: +georg.brandl
resolution: -> wont fix
status: open -> closed
___
Python tracker
<http://bugs.python.org/
Georg Brandl added the comment:
Confirmed; this appears fixed.
--
nosy: +georg.brandl
resolution: -> fixed
status: open -> closed
___
Python tracker
<http://bugs.python.org/
Georg Brandl added the comment:
If you need help with docs, let me know.
--
nosy: +georg.brandl
___
Python tracker
<http://bugs.python.org/issue19262>
___
___
Georg Brandl added the comment:
Tyler, thanks for the suggestion. However it doesn't really solve the issue:
the parameter order is the opposite of the current doc text (and your suggested
text).
--
nosy: +georg.brandl
___
Python tracker
Georg Brandl added the comment:
Ah yes, I somehow missed running perf.py itself with Python 3.
Should be fixed now; adapting the #19108 patch should be easy enough.
--
___
Python tracker
<http://bugs.python.org/issue19
Changes by Georg Brandl :
--
resolution: -> fixed
status: open -> closed
___
Python tracker
<http://bugs.python.org/issue19079>
___
___
Python-bugs-list
Georg Brandl added the comment:
Looks fine but -- as a new feature -- is 3.4 only, and needs docs and tests.
--
nosy: +georg.brandl
stage: -> patch review
versions: +Python 3.4 -Python 2.7
___
Python tracker
<http://bugs.python.org/issu
Georg Brandl added the comment:
Thanks for the suggestion; the parameters have already been added in Python
3.3, see http://docs.python.org/3/library/zlib.html#zlib.compressobj.
--
nosy: +georg.brandl
resolution: -> out of date
status: open ->
Georg Brandl added the comment:
Actually, compressobj() has always supported up to five arguments (named level,
method, wbits, memlevel, strategy); I'll document this for 2.7 for issue 19277.
The new thing in 3.3 are support for keyword arguments and the zdict para
Georg Brandl added the comment:
The rst file is missing from your patch.
I already posted a patch with statistics.rst five days ago. I have no idea why
you ignored it.
--
___
Python tracker
<http://bugs.python.org/issue18
Georg Brandl added the comment:
> I'm sorry if I stepped on your toes, but I didn't ignore your patch. If I've
> failed to follow the right procedure, it is due to inexperience, not malice.
> You yourself suggested it was only a temporary version just good enough to
&g
Georg Brandl added the comment:
Yep (should there be a policy about this somewhere)?
--
___
Python tracker
<http://bugs.python.org/issue15663>
___
___
Python-bug
Georg Brandl added the comment:
Hi Chris, your commit is a bit hard to review due to all the unrelated spacing
changes. I assume this is done automatically by your editor? It's probably
best to switch off that feature for CPython develo
Georg Brandl added the comment:
While reviewing: is it intended that the filter is only called for directories
and not for individual files?
--
___
Python tracker
<http://bugs.python.org/issue19
Georg Brandl added the comment:
Well, if the functions are part of the stable ABI (which it seems they are, as
they don't fall under some exclusion defined by PEP 384) they shouldn't be
removed if we take PEP 384 seriously.
--
nos
Georg Brandl added the comment:
Terry, thanks for your explanation; I was trying to find some time to write
something similar...
--
___
Python tracker
<http://bugs.python.org/issue17
Georg Brandl added the comment:
#19227 must be solved before anything is backported to the security branches.
--
dependencies: +test_multiprocessing_xxx hangs under Gentoo buildbots
___
Python tracker
<http://bugs.python.org/issue18
Georg Brandl added the comment:
Also merged to default.
--
versions: -Python 3.3, Python 3.4
___
Python tracker
<http://bugs.python.org/issue16041>
___
___
Pytho
Georg Brandl added the comment:
Also merged to default.
--
versions: -Python 3.3, Python 3.4
___
Python tracker
<http://bugs.python.org/issue17997>
___
___
Pytho
Georg Brandl added the comment:
Also merged to default.
--
versions: -Python 3.3, Python 3.4
___
Python tracker
<http://bugs.python.org/issue16040>
___
___
Pytho
Georg Brandl added the comment:
Also merged to default.
--
versions: -Python 3.3, Python 3.4
___
Python tracker
<http://bugs.python.org/issue16039>
___
___
Pytho
Georg Brandl added the comment:
Also merged to default.
--
versions: -Python 3.3, Python 3.4
___
Python tracker
<http://bugs.python.org/issue16037>
___
___
Pytho
Georg Brandl added the comment:
OK, I'm going to apply atfork_prepare.patch for 3.3.3rc1. If there is any
indication of a continuing problem, we'll revert the whole re-seeding code for
the final.
--
___
Python tracker
<http://bu
Georg Brandl added the comment:
For some reason, this still fails on the OpenIndiana builder:
http://buildbot.python.org/all/builders/AMD64%20OpenIndiana%203.3/builds/1104/steps/test/logs/stdio
--
nosy: +georg.brandl
status: closed -> o
Georg Brandl added the comment:
Ahh, the newly committed test for merge needs the same guard as the other
'dict' calls! I'll fix that in the release clone for 3.3.3 final.
--
___
Python tracker
<http://bugs.pyt
Georg Brandl added the comment:
Should be done.
--
status: open -> closed
___
Python tracker
<http://bugs.python.org/issue18964>
___
___
Python-bugs-list mai
Georg Brandl added the comment:
This specialized use case has no chance of being added to the very general dict
object.
But have a look at the collections.Counter class which does exactly what you
propose for positive values and the +/- operations.
--
nosy: +georg.brandl
Georg Brandl added the comment:
Is this backportable?
--
nosy: +georg.brandl
___
Python tracker
<http://bugs.python.org/issue19428>
___
___
Python-bugs-list mailin
Georg Brandl added the comment:
Hi Nitin,
"a // b" is defined as the floor division operation, same as what "math.floor(a
/ b)" gives: the largest integer <= a / b.
-7/2 is -3.5, the largest integer <= -3.5 is -4.
--
nosy: +georg.brandl
resolution: -> i
New submission from Georg Brandl:
>From Mark Summerfield:,
The Quick search box is really useful, but it is annoying that its
position varies from page to page. On pages with long tables of
contents it is often out of sight.
Why not put it above the Table of Contents. That
Georg Brandl added the comment:
I haven't looked at 3.2 buildbots since the last point release.
There will be only security releases in the future, still it'd be nice to be
able to test on different bots.
Antoine, can you fix this on the buildmaster or need I apply the patch i
Georg Brandl added the comment:
Whatever we decide to do here, it **must** also be done for antigravity.py.
--
nosy: +georg.brandl
___
Python tracker
<http://bugs.python.org/issue19
Georg Brandl added the comment:
IMO the fact that importing happens only once is also a very important one, so
much the better this helps in learning it early.
The bad thing is that opening this.py to see what's happening will not really
enlighten the beg
Georg Brandl added the comment:
>> You mean for PyRun_InteractiveOneObject()? Oh, it can be made private, but
>> what is the problem of adding yet another PyRun_Interactive*() function?
>> There are already a lot of them :-)
> And this is a problem. Newly added function i
Georg Brandl added the comment:
Can be closed?
--
nosy: +georg.brandl, vinay.sajip
___
Python tracker
<http://bugs.python.org/issue19504>
___
___
Python-bug
Georg Brandl added the comment:
Sounds good.
--
nosy: +georg.brandl
___
Python tracker
<http://bugs.python.org/issue19508>
___
___
Python-bugs-list mailin
Georg Brandl added the comment:
I think so.
--
nosy: +georg.brandl
___
Python tracker
<http://bugs.python.org/issue19691>
___
___
Python-bugs-list mailin
Georg Brandl added the comment:
LGTM.
--
nosy: +georg.brandl
___
Python tracker
<http://bugs.python.org/issue19762>
___
___
Python-bugs-list mailing list
Unsub
3501 - 3600 of 5257 matches
Mail list logo