Georg Brandl added the comment:
Fixed in r71217. Thanks!
--
nosy: +georg.brandl
resolution: -> fixed
status: open -> closed
___
Python tracker
<http://bugs.python.org/iss
Georg Brandl added the comment:
Closing as "works for me".
--
nosy: +georg.brandl
resolution: -> works for me
status: open -> closed
___
Python tracker
<http://bugs.pyth
Georg Brandl added the comment:
Should be covered now in r71212.
--
nosy: +georg.brandl
resolution: -> fixed
status: open -> closed
___
Python tracker
<http://bugs.python.org/iss
Georg Brandl added the comment:
Committed as r71223.
--
nosy: +georg.brandl
resolution: -> accepted
status: open -> closed
___
Python tracker
<http://bugs.python.org/
Georg Brandl added the comment:
Agreed.
--
nosy: +georg.brandl
resolution: -> wont fix
status: open -> closed
___
Python tracker
<http://bugs.python.org/iss
Georg Brandl added the comment:
Which will be synced into core at some point, I guess?
--
nosy: +georg.brandl
resolution: -> postponed
status: open -> pending
___
Python tracker
<http://bugs.python.org/iss
Georg Brandl added the comment:
Actually, it works as documented:
>>> import os
>>> os.makedirs("/tmp")
Traceback (most recent call last):
File "", line 1, in
File "/usr/lib/python2.6/os.py", line 157, in makedirs
mkdir(na
Georg Brandl added the comment:
Fixed 2.6 and 3k in r71222 and r71224, respectively.
--
nosy: +georg.brandl
resolution: -> accepted
status: open -> closed
___
Python tracker
<http://bugs.python.org/
Georg Brandl added the comment:
I don't think this is going to fly -- 1. because we don't lightly add
new syntax for every data type and 2. because it doesn't scale beyond
simple keys and values. A list of tuples is explicit and works fine.
--
nosy: +georg.br
Georg Brandl added the comment:
Fixed in r71225.
--
nosy: +georg.brandl
resolution: -> fixed
status: open -> closed
___
Python tracker
<http://bugs.python.org/
Georg Brandl added the comment:
Note that change #1 is already implemented as of r62051.
--
nosy: +georg.brandl
___
Python tracker
<http://bugs.python.org/issue1659
Georg Brandl added the comment:
You should restrict the search to the first 100 lines or so, if
possible. Many of our C files have inconsistent indentation, and using
this script with such a file, automatically relying on it to do the
right thing, will result in even more inconsistencies
Georg Brandl added the comment:
Your script is flawed in two parts:
* it doesn't filter the return value of listdir(), which leads to each
test being executed twice in the presence of .pyc files
* __import__("foo.bar") does *not* return the foo.bar submodule, but the
foo modul
Georg Brandl added the comment:
Can you retry with a new Python release?
--
nosy: +georg.brandl
resolution: -> out of date
status: open -> pending
___
Python tracker
<http://bugs.python.org/iss
Georg Brandl added the comment:
Seems like that's the case.
--
nosy: +georg.brandl
resolution: -> wont fix
status: open -> closed
___
Python tracker
<http://bugs.python.or
Changes by Georg Brandl :
--
dependencies: -Bugfix for #1470540 (XMLGenerator cannot output UTF-16)
resolution: -> duplicate
status: open -> closed
superseder: -> Bugfix for #1470540 (XMLGenerator cannot output UTF-16)
___
Python track
Georg Brandl added the comment:
This is fine in Py3k, where there is only one set of pickling exceptions
that can be raised. In 2.x it's best not to break backwards
compatibility right now.
--
nosy: +georg.brandl
resolution: -> wont fix
status: open -
Changes by Georg Brandl :
--
dependencies: -os.renames() crashes NTFS junctions
resolution: -> duplicate
status: open -> closed
superseder: -> os.renames() crashes NTFS junctions
___
Python tracker
<http://bugs.python.org/
Changes by Georg Brandl :
--
dependencies: -CGIHTTPServer doesn't handle path names with embeded space
resolution: -> duplicate
status: open -> closed
superseder: -> CGIHTTPServer doesn't handle path names with embeded space
___
Georg Brandl added the comment:
Closing then.
--
nosy: +georg.brandl
resolution: -> out of date
status: open -> closed
___
Python tracker
<http://bugs.python.org/iss
Georg Brandl added the comment:
Let's reject it then.
--
nosy: +georg.brandl
resolution: -> rejected
status: open -> closed
___
Python tracker
<http://bugs.python.or
Georg Brandl added the comment:
I don't think this will be dealt with in the 2.x series. Python 3
already has support for Unicode file names, so it's out of date there.
--
resolution: -> out of date
status: open -> closed
___
Pytho
Georg Brandl added the comment:
Fixed in trunk in r71237, 3k in r71239.
--
nosy: +georg.brandl
resolution: -> fixed
status: open -> closed
___
Python tracker
<http://bugs.python.org/iss
Georg Brandl added the comment:
Looks like the new message is in 2.6 as well.
--
nosy: +georg.brandl
resolution: -> fixed
status: open -> closed
___
Python tracker
<http://bugs.python.org/iss
Changes by Georg Brandl :
--
assignee: -> tarek
nosy: +tarek
___
Python tracker
<http://bugs.python.org/issue1298835>
___
___
Python-bugs-list mailing list
Un
Georg Brandl added the comment:
The messages are now suppressed by the temporary bump of the recursion
limit in PyErr_GivenExceptionMatches.
--
resolution: -> out of date
status: open -> closed
___
Python tracker
<http://bugs.python.org/
Georg Brandl added the comment:
Updated docs in r71240.
--
resolution: -> fixed
status: open -> closed
___
Python tracker
<http://bugs.python.org/
Georg Brandl added the comment:
Is this still unimplemented?
--
nosy: +georg.brandl
___
Python tracker
<http://bugs.python.org/issue5506>
___
___
Python-bug
Georg Brandl added the comment:
Assigning to Benjamin to make sure that Python is installed as "python3"
starting with 3.1.
--
assignee: -> benjamin.peterson
nosy: +benjamin.peterson, georg.brandl
priority: -> release blocker
__
Georg Brandl added the comment:
Thanks, committed in r71241.
--
nosy: +georg.brandl
resolution: -> accepted
status: open -> closed
___
Python tracker
<http://bugs.python.org/
Georg Brandl added the comment:
Fixed in r71242.
--
nosy: +georg.brandl
resolution: -> fixed
status: open -> closed
___
Python tracker
<http://bugs.python.org/
New submission from Georg Brandl :
If you use "python -m pydoc", pydoc will not find standard modules
written in Python. This leads to a traceback for example using "python
-m pydoc -k sys". Somehow, sys.path gets modified in a strange way,
which can be seen from
Changes by Georg Brandl :
--
components: +Library (Lib)
versions: +Python 2.6, Python 2.7, Python 3.0, Python 3.1
___
Python tracker
<http://bugs.python.org/issue5
Georg Brandl added the comment:
Has been fixed in trunk for some time.
--
status: open -> closed
___
Python tracker
<http://bugs.python.org/issue5443>
___
_
Georg Brandl added the comment:
Closing as fixed then.
--
nosy: +georg.brandl
resolution: -> fixed
status: open -> closed
___
Python tracker
<http://bugs.python.org/
Georg Brandl added the comment:
Fixed in r71243, thanks!
--
nosy: +georg.brandl
resolution: -> fixed
status: open -> closed
___
Python tracker
<http://bugs.python.org/
Changes by Georg Brandl :
--
assignee: -> georg.brandl
nosy: +georg.brandl
___
Python tracker
<http://bugs.python.org/issue5416>
___
___
Python-bugs-list mai
Georg Brandl added the comment:
Closing as "works for me".
--
nosy: +georg.brandl
resolution: -> works for me
status: open -> closed
___
Python tracker
<http://bugs.p
Georg Brandl added the comment:
It is also completely low-priority, and so it is perfectly
understandable that Martin wants to fix more important problems.
--
nosy: +georg.brandl
priority: -> low
___
Python tracker
<http://bugs.pyth
Georg Brandl added the comment:
In any case, this belongs in the Sphinx tracker:
http://bitbucket.org/birkenfeld/sphinx/issue/140/
--
resolution: -> duplicate
status: open -> closed
___
Python tracker
<http://bugs.python.org/
Georg Brandl added the comment:
I still think that the section covers basic file I/O quite well, and
since this is not Python-specific at all, you'll be better served with
an introduction to programming in general if you want to know all about
working with files.
--
resol
Georg Brandl added the comment:
It seems to me that retval works quite well, provided you call it in the
frame where the return occurs:
> /home/gbr/devel/python/x.py(2)f()
-> return 123
(Pdb) step
--Return--
> /home/gbr/devel/python/x.py(2)f()->123
-> return 123
(Pdb)
Changes by Georg Brandl :
--
priority: -> critical
___
Python tracker
<http://bugs.python.org/issue5330>
___
___
Python-bugs-list mailing list
Unsubscri
Georg Brandl added the comment:
Setting #4847 as superseder.
--
nosy: +georg.brandl
resolution: -> duplicate
status: open -> closed
superseder: -> csv fails when file is opened in binary mode
___
Python tracker
<http://bugs.python.o
Changes by Georg Brandl :
--
resolution: -> duplicate
status: open -> closed
superseder: -> .chm build process on Windows doesn't use the right filename
___
Python tracker
<http://bugs.pyt
Georg Brandl added the comment:
Committed in r71249.
--
resolution: -> fixed
status: open -> closed
___
Python tracker
<http://bugs.python.org/
Georg Brandl added the comment:
Since this is not supported anyway (and never was), closing as "won't fix".
--
nosy: +georg.brandl
resolution: -> wont fix
status: open -> closed
___
Python tracker
<http://b
Changes by Georg Brandl :
--
assignee: -> facundobatista
nosy: +facundobatista
___
Python tracker
<http://bugs.python.org/issue5340>
___
___
Python-bugs-lis
Georg Brandl added the comment:
Python 3 behavior is correct. Since HMAC operates on bytes, not text,
only bytes are accepted. In Python 2, the acceptance of Unicode strings
is more an accident than a feature.
--
nosy: +georg.brandl
resolution: -> wont fix
status: open ->
Georg Brandl added the comment:
Should be clearer as of r71251.
--
resolution: -> fixed
status: open -> closed
___
Python tracker
<http://bugs.python.org/
Georg Brandl added the comment:
I think the paragraph
Every call to :cfunc:`PyGILState_Ensure` must be matched by a call to
:cfunc:`PyGILState_Release` on the same thread.
says exactly what you want to know.
--
resolution: -> works for me
status: open ->
Georg Brandl added the comment:
I don't think that it is common practice to list submodules in __all__,
only names really exported from the package. Therefore, this does not
seem like a good change to make.
--
nosy: +georg.brandl
resolution: -> rejected
status: open -
Georg Brandl added the comment:
Closing as "won't fix". There's another issue that deals with better
documentation for slicing semantics.
--
nosy: +georg.brandl
resolution: -> wont fix
status: open -> closed
___
Changes by Georg Brandl :
--
assignee: -> georg.brandl
nosy: +georg.brandl
___
Python tracker
<http://bugs.python.org/issue1249749>
___
___
Python-bugs-lis
Georg Brandl added the comment:
Works for me as well.
--
nosy: +georg.brandl
resolution: -> works for me
status: open -> closed
___
Python tracker
<http://bugs.python.org/iss
Georg Brandl added the comment:
This is out of date now that Python includes the documentation for those
keywords.
--
nosy: +georg.brandl
resolution: -> out of date
status: open -> closed
___
Python tracker
<http://bugs.python.org/iss
Georg Brandl added the comment:
See also #1265100.
--
___
Python tracker
<http://bugs.python.org/issue1446619>
___
___
Python-bugs-list mailing list
Unsubscribe:
Georg Brandl added the comment:
There's also #1446619, so closing as a duplicate.
--
nosy: +georg.brandl
resolution: -> duplicate
status: open -> closed
superseder: -> extended slice behavior inconsistent with docs
___
Python
Georg Brandl added the comment:
Setting #5330 as a superseder, which also has a patch.
--
nosy: +georg.brandl
resolution: -> duplicate
status: open -> closed
superseder: -> profile and cProfile do not report C functions called with
keyword
Changes by Georg Brandl :
--
assignee: -> nbastin
nosy: +nbastin
___
Python tracker
<http://bugs.python.org/issue5330>
___
___
Python-bugs-list mailing list
Un
Georg Brandl added the comment:
I agree with Grant. There seems to be no way this can be sanely
implemented with today's infrastructure.
--
nosy: +georg.brandl
resolution: -> wont fix
status: open -> closed
___
Python tra
Georg Brandl added the comment:
Turns out this is caused by setting REQUEST_METHOD to 'cgi', which is
completely unmotivated. Not doing this lets the example script work fine.
--
nosy: +georg.brandl
resolution: -> works for me
status: o
Georg Brandl added the comment:
Assigning to Matthias since he added do-while(0) to Py_DECREF in r71229.
--
assignee: -> doko
nosy: +doko, georg.brandl
___
Python tracker
<http://bugs.python.org/issue1
Georg Brandl added the comment:
Setting it as a superseder, then.
--
dependencies: -inspect.getsource doesn't update when a module is reloaded
nosy: +georg.brandl
resolution: -> duplicate
status: open -> closed
superseder: -> inspect.getsource doesn't upda
Georg Brandl added the comment:
+1 for duck typing.
--
nosy: +georg.brandl
resolution: -> rejected
status: open -> closed
___
Python tracker
<http://bugs.python.org/iss
Georg Brandl added the comment:
Let's assume it is Win9x-only.
--
dependencies: -Inappropriate error received using socket timeout on Windows.
nosy: +georg.brandl
resolution: -> out of date
status: open -> closed
superseder: -> Inappropriate error received using soc
Changes by Georg Brandl :
--
status: open -> pending
___
Python tracker
<http://bugs.python.org/issue831574>
___
___
Python-bugs-list mailing list
Unsubscri
Georg Brandl added the comment:
This issue is very unspecific, and much documentation has been added
since. If something is still missing, a new issue should be opened.
--
nosy: +georg.brandl
resolution: -> out of date
status: open ->
Georg Brandl added the comment:
Why do you propose closing?
--
nosy: +georg.brandl
___
Python tracker
<http://bugs.python.org/issue809887>
___
___
Python-bug
Georg Brandl added the comment:
Committed a similar patch in r71255.
--
nosy: +georg.brandl
resolution: -> fixed
status: open -> closed
___
Python tracker
<http://bugs.python.org/is
Changes by Georg Brandl :
--
resolution: -> fixed
status: open -> closed
___
Python tracker
<http://bugs.python.org/issue957381>
___
___
Python-bugs-list
Georg Brandl added the comment:
Closing this one as duplicate.
--
nosy: +georg.brandl
resolution: -> duplicate
status: open -> closed
superseder: -> bdist_rpm fails when installing man pages
___
Python tracker
<http://bugs.python.org/
Georg Brandl added the comment:
Agreed.
--
nosy: +georg.brandl
resolution: -> out of date
status: open -> closed
___
Python tracker
<http://bugs.python.org/is
Georg Brandl added the comment:
This is too vague and too large an issue to be tracked by an RFE issue.
Concrete proposals and implementations must go through the PEP process.
--
nosy: +georg.brandl
resolution: -> rejected
status: open ->
Georg Brandl added the comment:
Setting as superseder.
--
nosy: +georg.brandl
resolution: -> duplicate
status: open -> closed
superseder: -> urllib2 header capitalization
___
Python tracker
<http://bugs.python.org/
Georg Brandl added the comment:
Setting as superseder.
--
nosy: +georg.brandl
resolution: -> duplicate
status: open -> closed
superseder: -> allow HTMLParser to continue after a parse error
___
Python tracker
<http://bugs.python.org
Changes by Georg Brandl :
--
assignee: mhammond -> georg.brandl
nosy: +georg.brandl
priority: high -> normal
___
Python tracker
<http://bugs.python.org/is
Changes by Georg Brandl :
--
assignee: -> rhettinger
nosy: +rhettinger
___
Python tracker
<http://bugs.python.org/issue5697>
___
___
Python-bugs-list mai
Georg Brandl added the comment:
The DOCTYPE fix is fine. However, I'm not sure about the charset -- why
should it be UTF-8? Pydoc will output anything in docstrings, which can
be in any encoding.
--
___
Python tracker
<http://bugs.py
Changes by Georg Brandl :
--
resolution: -> fixed
status: open -> closed
___
Python tracker
<http://bugs.python.org/issue2519>
___
___
Python-bugs-list
Georg Brandl added the comment:
I guess it isn't...
--
resolution: -> rejected
status: open -> closed
___
Python tracker
<http://bugs.python
Georg Brandl added the comment:
Probably, but I guess nobody is really interested in fixing it since
it's not in 3.x.
--
nosy: +georg.brandl
resolution: -> wont fix
status: open -> pending
___
Python tracker
<http://bugs.python.o
Georg Brandl added the comment:
It's not really my call. Tim is the author of the module and classified
it as a feature request.
Why don't you try to come up with a patch? He might even accept it :D
--
nosy: +georg.brandl
___
Python trac
Changes by Georg Brandl :
--
assignee: collinwinter -> michael.foord
nosy: +michael.foord
___
Python tracker
<http://bugs.python.org/issue588825>
___
___
Py
Changes by Georg Brandl :
--
assignee: -> georg.brandl
___
Python tracker
<http://bugs.python.org/issue2725>
___
___
Python-bugs-list mailing list
Unsubscri
Georg Brandl added the comment:
Since NonMultipart is in another module, it is not found automatically
by unqualified name. This is working as expected.
--
resolution: -> wont fix
status: open -> closed
___
Python tracker
<http://bugs.p
Georg Brandl added the comment:
Is this about setuptools, or distutils? setuptools-specific bugs do not
go in this tracker.
--
nosy: +georg.brandl
___
Python tracker
<http://bugs.python.org/issue5
Changes by Georg Brandl :
--
assignee: -> georg.brandl
nosy: +georg.brandl
___
Python tracker
<http://bugs.python.org/issue5708>
___
___
Python-bugs-list mai
Changes by Georg Brandl :
--
assignee: -> georg.brandl
nosy: +georg.brandl
___
Python tracker
<http://bugs.python.org/issue5704>
___
___
Python-bugs-list mai
Changes by Georg Brandl :
--
assignee: -> pitrou
nosy: +pitrou
___
Python tracker
<http://bugs.python.org/issue5322>
___
___
Python-bugs-list mailing list
Un
Georg Brandl added the comment:
I fixed the DOCTYPE in trunk/3k r71443/71444, and the encoding issue in
3k only, because there the encoding is well-defined, in r71445.
--
resolution: -> fixed
status: open -> closed
___
Python tracker
Georg Brandl added the comment:
I think this file is only meant as a test that 2to3 can parse both 2.x
and 3.x syntax, not Python itself.
--
nosy: +georg.brandl
resolution: -> wont fix
status: open -> pending
___
Python tracker
Georg Brandl added the comment:
Committed a similar patch in r71505.
--
resolution: -> fixed
status: open -> closed
___
Python tracker
<http://bugs.python.org/
Changes by Georg Brandl :
--
assignee: -> tarek
nosy: +tarek
___
Python tracker
<http://bugs.python.org/issue5706>
___
___
Python-bugs-list mailing list
Un
Georg Brandl added the comment:
Committed in r71506.
--
resolution: -> accepted
status: open -> closed
___
Python tracker
<http://bugs.python.org/
Georg Brandl added the comment:
Added in r71507.
--
resolution: -> accepted
status: open -> closed
___
Python tracker
<http://bugs.python.org/issue5704>
___
__
Changes by Georg Brandl :
--
assignee: georg.brandl ->
___
Python tracker
<http://bugs.python.org/issue1720250>
___
___
Python-bugs-list mailing list
Unsubscri
Georg Brandl added the comment:
This is (kind of) intentional. string.maketrans operates on bytes, not
string objects. However, this is quite confusing, so I added
bytes.maketrans() now in py3k, and deprecated string.maketrans(). (r71521)
--
resolution: -> works for me
status: o
Georg Brandl added the comment:
Should be fixed in r71537. Will backport to 2.6.
--
nosy: +georg.brandl
resolution: -> fixed
status: open -> closed
___
Python tracker
<http://bugs.python.org/
Georg Brandl added the comment:
You can write :class:`~email.mime.MIMENonMultipart`; this will link to
the correct class but only display the thing after the last dot, in this
case "MIMENonMultipart".
--
___
Python tracker
<http://bu
4301 - 4400 of 5257 matches
Mail list logo