Georg Brandl added the comment:
Martin v. Löwis schrieb:
> New submission from Martin v. Löwis:
>
> Let's see who gets this
I did. :)
__
Tracker <[EMAIL PROTECTED]>
<http://bu
Georg Brandl added the comment:
Thanks, this is already fixed in the development docs
(http://docs.python.org/dev).
--
nosy: +georg.brandl
resolution: -> out of date
status: open -> closed
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.pytho
New submission from Georg Brandl:
With attached file (which contains a single latin-1 instead of utf-8
encoded character), Python prints "SyntaxError: None" instead of a more
helpful analysis of the problem.
--
assignee: loewis
files: x.py
keywords: py3k
messages:
New submission from Georg Brandl:
When showing a name in a NameError, the encoding is messed up.
(File y.py, encoded in UTF-8, contains only only the line shown in the
traceback; the terminal encoding is set to UTF-8.)
$ python3k y.py
Traceback (most recent call last):
File "y.py",
Georg Brandl added the comment:
Thanks! Committed as part of rev. 57829.
--
assignee: -> georg.brandl
nosy: +georg.brandl
resolution: -> accepted
status: open -> closed
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.py
New submission from Georg Brandl:
While it's documented that unicode.translate()s table maps ordinals to
strings/ordinals/None, if you give a unicode key in the table it will
just be ignored. This is quite surprising.
--
assignee: lemburg
components: Unicode
messages: 55530
Georg Brandl added the comment:
Yes, I wanted to change that even a while ago.
--
assignee: -> georg.brandl
components: +Documentation tools (Sphinx) -Documentation
nosy: +georg.brandl
severity: major -> normal
versions: +Python 2.6
__
Tracker &
Georg Brandl added the comment:
Koen van de Sande schrieb:
> New submission from Koen van de Sande:
>
> The python3.0-config script, installed into the py3k bin folder, does
> not run on Python 3.0a1, because of the syntax change in the "print"
> statement.
Georg Brandl added the comment:
Bill Janssen schrieb:
> Bill Janssen added the comment:
>
> I agree. It shouldn't be an absolute size, and it is too small.
Okay, should be fixed in SVN (rev. 57864) and be live on the page in
the next 12 hours.
--
resolution: -> f
Georg Brandl added the comment:
Bill Janssen schrieb:
> Bill Janssen added the comment:
>
> I agree. It shouldn't be an absolute size, and it is too small.
Fixed in rev. 57864, should be live on the site in the next 12 hours.
__
Tracker <
New submission from Georg Brandl:
Although documented as deprecated, file.seek accepts float arguments in 3.0.
--
keywords: py3k
messages: 8
nosy: georg.brandl
severity: normal
status: open
title: file.seek allows float arguments
type: behavior
versions: Python 3.0
Georg Brandl added the comment:
This is currently expected; the non-dev version will include a different
search function.
--
nosy: +georg.brandl
resolution: -> later
status: open -> closed
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.pytho
Georg Brandl added the comment:
Here's a patch that should make unicode.translate() more robust, and
also allows unicode characters to be passed in the mapping.
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python
Georg Brandl added the comment:
Okay, next try. I think the sizes are more balanced now.
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1072>
__
___
Python-bugs-
Georg Brandl added the comment:
Marc-Andre Lemburg schrieb:
> Marc-Andre Lemburg added the comment:
>
> Nice idea, but why don't you use a dictionary iterator (PyDict_Next())
> for the fixup ?
I thought that is unsafe to use when the dictionary is mutate
Changes by Georg Brandl:
--
assignee: -> collinwinter
nosy: +collinwinter
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1078>
__
___
Python-bugs-li
Georg Brandl added the comment:
Vizcaynot schrieb:
> New submission from Vizcaynot:
>
> When trying the tutorial example about unicode I have:
>>>> "Äpfel".encode('utf-8')
> File "", line 1
> SyntaxError: (unicode error) unexpected co
Georg Brandl added the comment:
Waldemar Osuch schrieb:
> New submission from Waldemar Osuch:
>
> Loading pickles on windows without specifying 'rb' does not work in
> http://svn.python.org/projects/doctools/trunk/sphinx/web/application.py
> A simple patch attache
Georg Brandl added the comment:
Okay, changed in rev. 57925. Closing this as fixed.
--
resolution: -> fixed
status: open -> closed
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.
Georg Brandl added the comment:
Superseded by #1091 patches.
--
nosy: +georg.brandl
resolution: -> duplicate
status: open -> closed
superseder: -> [patch] py3k Mac installation errors
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.py
Georg Brandl added the comment:
This was apparently fixed by Thomas with rev. 57828.
--
nosy: +georg.brandl
resolution: -> fixed
status: open -> closed
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.pytho
Georg Brandl added the comment:
Thanks for the patches, I've applied them as rev. 57926.
--
nosy: +georg.brandl
resolution: -> accepted
status: open -> closed
title: [patch] py3k Mac installation errors -> py3k Mac installation errors
__
T
Georg Brandl added the comment:
May this be a byproduct of the new generator features in 2.5?
--
nosy: +georg.brandl
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/
New submission from Georg Brandl:
Python 3.0a1 includes itertools and normally builds it, so the
interesting thing would be why it isn't present on your system :)
Have you built Python yourself? If so, can you provide build logs and/or
error messages?
--
nosy: +georg.b
Georg Brandl added the comment:
Yes, that makes sense.
New patch attached, copying the dict and using PyDict_Next.
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1071>
__Index: Doc/library/
Georg Brandl added the comment:
OK, closing.
--
resolution: -> fixed
status: open -> closed
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1092>
__
_
Georg Brandl added the comment:
Vizcaynot schrieb:
> New submission from Vizcaynot:
>
> In python 3.0a1 under Win XP SP2:
> Typing next code:
>
> import random
> s=range(10)
range() now returns an iterator, not a sequence, so random.shuffle() can't
work on it. Use l
Georg Brandl added the comment:
Assigned to Collin.
--
assignee: -> collinwinter
nosy: +collinwinter, georg.brandl
title: [patch] 2to3, lambda with non-tuple argument inside parenthesis -> 2to3,
lambda with non-tuple argument inside paren
Georg Brandl added the comment:
Added a paragraph in rev. 57992, 57993.
--
resolution: -> fixed
status: open -> closed
_
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.o
Georg Brandl added the comment:
David Ripton schrieb:
> New submission from David Ripton:
>
> The hashlib module seems not to work at all:
>
> $ python3.0
> Python 3.0a1 (py3k, Sep 5 2007, 08:17:11)
> [GCC 4.1.2 (Gentoo 4.1.2)] on linux2
> Type "help", "
Georg Brandl added the comment:
Lars Gustäbel schrieb:
> New submission from Lars Gustäbel:
>
> When rebuilding parts of the documentation the search index is emptied.
> The problem is that the extensions are not stripped from the filenames
> that are given to IndexBuilder
Georg Brandl added the comment:
Fixed in rev. 58012, 58013.
--
nosy: +georg.brandl
resolution: -> accepted
status: open -> closed
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.pytho
Georg Brandl added the comment:
Assigning to Skip.
--
assignee: -> skip.montanaro
nosy: +georg.brandl, skip.montanaro
title: Spurious warning about missing _sha256 and _sha512 when not needed ->
Spurious warning about missing _sha256 and _sha512 when not
Georg Brandl added the comment:
Setting patch as superseder
--
nosy: +georg.brandl
resolution: -> duplicate
status: open -> closed
superseder: -> fix bug #685846: raw_input defers signals
Tracker <[EMAIL PROTECTED]>
<http
Georg Brandl added the comment:
Set as superseder of #685846 and #1113.
--
nosy: +georg.brandl
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/is
Georg Brandl added the comment:
This is ultimately the same as #685846, for which a patch is at #706406.
--
nosy: +georg.brandl
resolution: -> duplicate
status: open -> closed
superseder: -> fix bug #685846: raw_input defers signals
__
Tracke
Georg Brandl added the comment:
Aki schrieb:
> (cd /usr/local/bin; ln python2.5 python)
> (cd /usr/local/bin; ln -sf python2.5-config python-config)
> ln: cannot create python-config: File exists
> make: *** [bininstall] Error 2
Shouldn't ln -f ignore existing destination file
Georg Brandl added the comment:
Skip Montanaro schrieb:
> Skip Montanaro added the comment:
>
> Assigning to me because? I've had no involvement at all
> with SSL or sha code in Python.
IIRC you added the code that collects and displa
Georg Brandl added the comment:
Perhaps Martin knows something?
--
assignee: -> loewis
nosy: +loewis
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.o
Georg Brandl added the comment:
[Martin]
> I'm not sure why we bother checking whether the old file exists before
> removing it, instead of just doing 'rm -f'; that has been there since
> r6352 with no explanation given.
So would this patch be acceptable?
Georg Brandl added the comment:
Anand Patil schrieb:
> Anand Patil added the comment:
>
> Sorry- Where can I get this patch? The SourceForge patch manager says it's
> closed.
It is - like all other issues - in this tracker at
http://bugs.
Georg Brandl added the comment:
I don't think so. They can't have the same behavior, and "split" is the most
reasonable name for what the bytes method does.
There have always been subtle differences between the behavior of string and
unicode methods; this was even more obj
Changes by Georg Brandl:
--
status: pending -> closed
_
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1708326>
_
___
Python-bugs-list mailing li
Changes by Georg Brandl:
--
status: pending -> closed
_
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1767242>
_
___
Python-bugs-list mailing li
Changes by Georg Brandl:
--
status: pending -> closed
_
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1209562>
_
___
Python-bugs-list mailing li
Changes by Georg Brandl:
--
status: pending -> closed
_
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1749583>
_
___
Python-bugs-list mailing li
Georg Brandl added the comment:
Committed as rev. 58043, 58044.
--
resolution: accepted -> fixed
status: open -> closed
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.pytho
Georg Brandl added the comment:
I think you misunderstood the setup.py message; from OpenSSL 0.9.8, building
the _sha modules is not needed. That they are reported as not built is a
bug which has been fixed now in SVN.
--
nosy: +georg.brandl
resolution: -> invalid
status: o
Georg Brandl added the comment:
Bill Janssen schrieb:
> Isn't this 1094?
It is.
--
nosy: +georg.brandl
resolution: -> duplicate
status: open -> closed
superseder: -> TypeError in poplib.py
__
Tracker <[EMAIL PROTECTED]>
Changes by Georg Brandl:
--
assignee: -> georg.brandl
nosy: +georg.brandl
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1121>
__
___
Python-bugs-li
Changes by Georg Brandl:
--
assignee: -> georg.brandl
nosy: +georg.brandl
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1122>
__
___
Python-bugs-li
Changes by Georg Brandl:
--
assignee: -> georg.brandl
nosy: +georg.brandl
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1152>
__
___
Python-bugs-li
Georg Brandl added the comment:
Thanks for reviewing, I'll finish and commit that one shortly.
--
assignee: -> georg.brandl
nosy: +georg.brandl
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.pyt
Georg Brandl added the comment:
Okay, committed as rev. 58112, 58113. Thank you!
--
resolution: -> accepted
status: open -> closed
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.pytho
Georg Brandl added the comment:
Fixed in rev. 58114.
--
resolution: -> fixed
status: open -> closed
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.pytho
Georg Brandl added the comment:
Fixed in rev. 58115, 58116 (2.5). Thanks!
--
resolution: -> fixed
status: open -> closed
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.pytho
Georg Brandl added the comment:
Fixed in rev. 58117, 58118 (2.5). Thanks!
--
resolution: -> fixed
status: open -> closed
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.pytho
Georg Brandl added the comment:
I'll look into it.
--
nosy: +georg.brandl
_
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1598083>
_
___
Georg Brandl added the comment:
Fixed in rev. 58119, 58120 (2.5).
--
nosy: +georg.brandl
resolution: -> fixed
status: open -> closed
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.pytho
Georg Brandl added the comment:
Assigning to Martin.
--
assignee: -> loewis
nosy: +georg.brandl, loewis
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.o
Georg Brandl added the comment:
Fixed in the repr module (it was calling sorted() on sets and dicts,
which is wrong without fallback) in rev. 58122 (trunk), 58123 (2.5) --
will be merged to 3.0 shortly.
--
assignee: -> georg.brandl
nosy: +georg.brandl
resolution: -> fixed
status
Georg Brandl added the comment:
Documented in rev. 1121.
--
resolution: -> fixed
status: open -> closed
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.pytho
Georg Brandl added the comment:
It says "... for new-style classes (classes that derive from object)." I
think this is clear enough.
--
resolution: -> wont fix
status: open -> closed
_
Tracker <[EMAIL PROTECTED]>
<http://bug
Georg Brandl added the comment:
Fixed in rev. 58125, should be merged to 3k shortly. Thanks!
--
nosy: +georg.brandl
resolution: -> fixed
status: open -> closed
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.pytho
Georg Brandl added the comment:
The function in question is in Python/ast.c. Martin, does the string
need to be null-terminated or does DecodeUnicodeEscape need to be fixed
(since it takes an explicit length argument)?
--
assignee: -> loewis
nosy: +georg.brandl, loewis
type: ->
Georg Brandl added the comment:
Brett, you recently fixed an infinite recursion crasher, right?
--
assignee: -> brett.cannon
nosy: +brett.cannon
_
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/
Georg Brandl added the comment:
Unfortunately, the patch is hard to review with all the whitespace
cleanup distracting from semantic changes. Can you produce a patch with
only those changes?
--
nosy: +georg.brandl
__
Tracker <[EMAIL PROTECTED]>
Georg Brandl added the comment:
Fixed in rev. 58127.
--
assignee: -> georg.brandl
nosy: +georg.brandl
resolution: -> fixed
status: open -> closed
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.py
Georg Brandl added the comment:
Guido van Rossum schrieb:
> Guido van Rossum added the comment:
>
> There's one additional issue. If any of the items is a bytes, the call
> should fail.
Should it really, even if the bytes is ascii-encodable?
Georg
--
no
Changes by Georg Brandl:
--
status: open -> closed
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1162>
__
___
Python-bugs-list mailing list
Uns
Georg Brandl added the comment:
I'll look at this shortly.
--
assignee: -> georg.brandl
nosy: +georg.brandl
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.pyt
Georg Brandl added the comment:
Exactly.
--
nosy: +georg.brandl
resolution: -> invalid
status: open -> closed
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.pytho
Georg Brandl added the comment:
There's nothing we can do here. There are three index entries for "for
statement", which link to the for, break and continue pages. They can't
be told apart, so we can't choose which one will be the first, the one
to display "for
New submission from Georg Brandl:
This is fixed in SVN, you can view the docs e.g. here:
http://docs.python.org/dev/reference/expressions#yield-expressions
--
nosy: +georg.brandl
resolution: -> out of date
status: open -> closed
__
Tracker &
Georg Brandl added the comment:
This is fixed in SVN, you can view the docs e.g. here:
http://docs.python.org/dev/reference/expressions#yield-expressions
--
nosy: +georg.brandl
resolution: -> out of date
status: open -> closed
__
Tracker &
Changes by Georg Brandl:
--
resolution: -> duplicate
status: open -> closed
superseder: -> urllib* 20x responses not OK?
Tracker <[EMAIL PROTECTED]>
<http://bugs.pyth
Georg Brandl added the comment:
IMO the patch is not complete, the xview method should rather be
implemented like these in Tkinter.py.
Assigning to Martin.
--
assignee: -> loewis
nosy: +georg.brandl, loewis
__
Tracker <[EMAIL PROTECTED]&
Georg Brandl added the comment:
Fixed in rev. 58204, 58205 (2.5).
--
resolution: -> fixed
status: open -> closed
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.pytho
Georg Brandl added the comment:
This might need at least a NEWS entry, if not a documentation clarification.
--
nosy: +georg.brandl
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/
Georg Brandl added the comment:
Thanks for notifying me. The tracker currently doesn't send
notifications if you only set the assignee, but don't include a message.
I hope this will be fixed soon.
The __nonzero__() is unproblematic. The keys() produced in this way will
have an unp
Georg Brandl added the comment:
While this is true, there may be code relying on the current behavior,
and to break that for a tiny performance gain is gratuitous breakage and
should be avoided.
_
Tracker <[EMAIL PROTECTED]>
<http://bugs.p
Georg Brandl added the comment:
IMO zseil's latest patch is the best one, but I need any other developer
to review and approve it.
_
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.or
Georg Brandl added the comment:
Okay, you've convinced me. Committed rev. 58218.
--
resolution: -> accepted
status: open -> closed
_
Tracker <[EMAIL PROTECTED]>
<http://bugs.pyt
Changes by Georg Brandl:
--
type: -> rfe
versions: +Python 2.6, Python 3.0
_
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1613130>
_
___
P
Georg Brandl added the comment:
Added to the documentation that string methods don't take keyword args
in rev. 58219. Closing this as "works for me".
--
nosy: +georg.brandl
resolution: -> works for me
status: open -> closed
__
Trac
Changes by Georg Brandl:
--
assignee: -> facundobatista
nosy: +facundobatista
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1182>
__
___
Python-bu
Georg Brandl added the comment:
I don't have a specific opinion on this; the usage of
Py_EnterRecursiveCall/Py_ReprEnter certainly looks correct.
--
assignee: georg.brandl -> brett.cannon
_
Tracker <[EMAIL PROTECTED]>
<http:
Changes by Georg Brandl:
--
components: +Interpreter Core -None
type: -> rfe
versions: +Python 2.6, Python 3.0
_
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/
Georg Brandl added the comment:
Committed, incl. docs, as rev. 58221.
--
assignee: -> georg.brandl
nosy: +georg.brandl
resolution: -> accepted
status: open -> closed
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.py
Changes by Georg Brandl:
--
assignee: -> georg.brandl
nosy: +georg.brandl
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1189>
__
___
Python-bugs-li
Georg Brandl added the comment:
This is already fixed in SVN.
--
nosy: +georg.brandl
resolution: -> out of date
status: open -> closed
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.pytho
Georg Brandl added the comment:
Indeed, and I can remember trying to get around that, but didn't achieve
anything... I'll close it as won't fix.
--
nosy: +georg.brandl
resolution: -> wont fix
status: open -> closed
__
Tracker <
Georg Brandl added the comment:
There are a few other issues about raw_input and signals in the tracker,
possibly this is just another incarnation...
The docs tracker link is fixed, but needs a rebuild on the server.
--
nosy: +georg.brandl
__
Tracker
Changes by Georg Brandl:
--
assignee: -> georg.brandl
nosy: +georg.brandl
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1196>
__
___
Python-bugs-li
Georg Brandl added the comment:
Okay, applied that workaround in rev. 58243.
--
assignee: fdrake -> georg.brandl
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.o
Georg Brandl added the comment:
The default radix is, and was always AFAICS, 10. I've now documented
that in rev. 58244, 58245.
--
resolution: -> fixed
status: open -> closed
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.
Georg Brandl added the comment:
Committed in 3k branch as rev. 58246. Just open a new issue for the 2.6
docs when they are ready :)
--
resolution: -> accepted
status: open -> closed
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.pytho
Georg Brandl added the comment:
Applied your patch as r58247.
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1177>
__
___
Python-bugs-list mailing list
Unsubs
Changes by Georg Brandl:
--
assignee: -> georg.brandl
nosy: +georg.brandl
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1199>
__
___
Python-bugs-li
Georg Brandl added the comment:
Wasn't that already fixed in #1566800?
--
nosy: +georg.brandl
resolution: -> out of date
status: open -> closed
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.
101 - 200 of 5257 matches
Mail list logo