[issue1726172] ftplib.py: IndexError in voidresp occasionally

2009-04-05 Thread Georg Brandl
Georg Brandl added the comment: Fixed in r71217. Thanks! -- nosy: +georg.brandl resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/iss

[issue1732662] socket makefile objects are not independent

2009-04-05 Thread Georg Brandl
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

[issue1742837] Documentation for BaseHTTPServer.HTTPServer

2009-04-05 Thread Georg Brandl
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

[issue5606] The makefile dependencies listing formatter.h are wrong

2009-04-05 Thread Georg Brandl
Georg Brandl added the comment: Committed as r71223. -- nosy: +georg.brandl resolution: -> accepted status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue1538556] PyThreadState_SetAsyncExc bug

2009-04-05 Thread Georg Brandl
Georg Brandl added the comment: Agreed. -- nosy: +georg.brandl resolution: -> wont fix status: open -> closed ___ Python tracker <http://bugs.python.org/iss

[issue1538691] Patch cElementTree to export CurrentLineNumber

2009-04-05 Thread Georg Brandl
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

[issue5586] The documentation of os.makedirs is misleading

2009-04-05 Thread Georg Brandl
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

[issue5615] linking fails when configured --without-threads

2009-04-05 Thread Georg Brandl
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/

[issue5579] Display for OrderedDict

2009-04-05 Thread Georg Brandl
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

[issue5580] Strange error message in Python/getargs.c

2009-04-05 Thread Georg Brandl
Georg Brandl added the comment: Fixed in r71225. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue1659410] Minor AST tweaks

2009-04-05 Thread Georg Brandl
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

[issue5611] Auto-detect indentation in C source in vimrc

2009-04-05 Thread Georg Brandl
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

[issue5533] unittest can't deal with packages

2009-04-05 Thread Georg Brandl
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

[issue1473979] test test_capi crashed -- thread.error: can't allocate lock

2009-04-05 Thread Georg Brandl
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

[issue1477450] test_bsddb skipped -- Failed to load on HP-UX 11.2i

2009-04-05 Thread Georg Brandl
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

[issue1470540] XMLGenerator creates a mess with UTF-16

2009-04-05 Thread Georg Brandl
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

[issue1457119] Unifying pickle and cPickle exception class hierarchies

2009-04-05 Thread Georg Brandl
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 -

[issue1438185] os.renames() crashes NTFS junctions

2009-04-05 Thread Georg Brandl
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/

[issue1436206] CGIHTTPServer doesn't handle path names with embeded space

2009-04-05 Thread Georg Brandl
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 ___

[issue1396258] KeyboardInterrupt prevents return to Windows console

2009-04-05 Thread Georg Brandl
Georg Brandl added the comment: Closing then. -- nosy: +georg.brandl resolution: -> out of date status: open -> closed ___ Python tracker <http://bugs.python.org/iss

[issue1324770] Adding redblack tree to collections module

2009-04-05 Thread Georg Brandl
Georg Brandl added the comment: Let's reject it then. -- nosy: +georg.brandl resolution: -> rejected status: open -> closed ___ Python tracker <http://bugs.python.or

[issue1306484] compile() converts "filename" parameter to StringType

2009-04-05 Thread Georg Brandl
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

[issue1326077] traceback.py formats SyntaxError differently

2009-04-05 Thread Georg Brandl
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

[issue1283289] PyArg_ParseTupleAndKeywords gives misleading error message

2009-04-05 Thread Georg Brandl
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

[issue1298835] vendor-packages directory.

2009-04-05 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: -> tarek nosy: +tarek ___ Python tracker <http://bugs.python.org/issue1298835> ___ ___ Python-bugs-list mailing list Un

[issue5508] maximum recursion depth exceeded in __subclasscheck__

2009-04-05 Thread Georg Brandl
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/

[issue5370] unpickling vs. __getattr__

2009-04-05 Thread Georg Brandl
Georg Brandl added the comment: Updated docs in r71240. -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue5506] io.BytesIO doesn't support the buffer protocol

2009-04-05 Thread Georg Brandl
Georg Brandl added the comment: Is this still unimplemented? -- nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/issue5506> ___ ___ Python-bug

[issue5461] python3 symlink

2009-04-05 Thread Georg Brandl
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 __

[issue5471] os.path.expanduser('~') doesnt works correctly when HOME is '/'

2009-04-05 Thread Georg Brandl
Georg Brandl added the comment: Thanks, committed in r71241. -- nosy: +georg.brandl resolution: -> accepted status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue5453] pydoc -k fails (release30-maint patch)

2009-04-05 Thread Georg Brandl
Georg Brandl added the comment: Fixed in r71242. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue5699] Strange interaction between -m and pydoc

2009-04-05 Thread Georg Brandl
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

[issue5699] Strange interaction between -m and pydoc

2009-04-05 Thread Georg Brandl
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

[issue5443] trivial typo in itertools documentation

2009-04-05 Thread Georg Brandl
Georg Brandl added the comment: Has been fixed in trunk for some time. -- status: open -> closed ___ Python tracker <http://bugs.python.org/issue5443> ___ _

[issue5436] test_distutils fails with official Mac OS X Installer Disk Image (3.0.1)

2009-04-05 Thread Georg Brandl
Georg Brandl added the comment: Closing as fixed then. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue5432] plistlib contains unescaped hex sequence in doc string

2009-04-05 Thread Georg Brandl
Georg Brandl added the comment: Fixed in r71243, thanks! -- nosy: +georg.brandl resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue5416] str.replace does strange things when given a negative count

2009-04-05 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: -> georg.brandl nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/issue5416> ___ ___ Python-bugs-list mai

[issue5406] asyncore doc issue

2009-04-05 Thread Georg Brandl
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

[issue5390] Item 'Python x.x.x' in Add/Remove Programs list still lacks an icon

2009-04-05 Thread Georg Brandl
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

[issue5364] documentation in epub format

2009-04-05 Thread Georg Brandl
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/

[issue5351] Python tutorial error

2009-04-05 Thread Georg Brandl
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

[issue5343] remove or make work pdb retval and rv

2009-04-05 Thread Georg Brandl
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)

[issue5330] profile and cProfile do not report C functions called with keyword arguments

2009-04-05 Thread Georg Brandl
Changes by Georg Brandl : -- priority: -> critical ___ Python tracker <http://bugs.python.org/issue5330> ___ ___ Python-bugs-list mailing list Unsubscri

[issue5455] csv module no longer works as expected when file opened in binary mode

2009-04-05 Thread Georg Brandl
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

[issue2421] doc\make.bat fails for htmlhelp because of hardcoded filename

2009-04-05 Thread Georg Brandl
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

[issue5444] .chm build process on Windows doesn't use the right filename

2009-04-05 Thread Georg Brandl
Georg Brandl added the comment: Committed in r71249. -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue5376] Wrong ImportError message if module is not readable

2009-04-05 Thread Georg Brandl
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

[issue5340] Change in cgi behavior breaks existing software

2009-04-05 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: -> facundobatista nosy: +facundobatista ___ Python tracker <http://bugs.python.org/issue5340> ___ ___ Python-bugs-lis

[issue5285] hmac throws TypeErrors

2009-04-05 Thread Georg Brandl
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 ->

[issue5298] Inconsistency in C-API thread docs

2009-04-05 Thread Georg Brandl
Georg Brandl added the comment: Should be clearer as of r71251. -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue5299] PyGILState_Ensure()/PyGILState_Release() documentation incomplete?

2009-04-05 Thread Georg Brandl
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 ->

[issue1217881] pydoc includes unnecessary files for a package.

2009-04-05 Thread Georg Brandl
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 -

[issue1256786] slice object uses -1 as exclusive end-bound

2009-04-05 Thread Georg Brandl
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 ___

[issue1249749] Encodings and aliases do not match runtime

2009-04-05 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: -> georg.brandl nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/issue1249749> ___ ___ Python-bugs-lis

[issue1251026] cgitb gives wrong lineno inside try:..finally:

2009-04-05 Thread Georg Brandl
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

[issue1278102] help() broken, especially on Windows

2009-04-05 Thread Georg Brandl
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

[issue1446619] extended slice behavior inconsistent with docs

2009-04-05 Thread Georg Brandl
Georg Brandl added the comment: See also #1265100. -- ___ Python tracker <http://bugs.python.org/issue1446619> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1265100] sequence slicing documentation incomplete

2009-04-05 Thread Georg Brandl
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

[issue1229680] Tracing C function calls and keyword arguments

2009-04-05 Thread Georg Brandl
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

[issue5330] profile and cProfile do not report C functions called with keyword arguments

2009-04-05 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: -> nbastin nosy: +nbastin ___ Python tracker <http://bugs.python.org/issue5330> ___ ___ Python-bugs-list mailing list Un

[issue1144263] reload() is broken for C extension objects

2009-04-05 Thread Georg Brandl
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

[issue1159139] cgi.py invalid REQUEST_METHOD set

2009-04-05 Thread Georg Brandl
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

[issue1113244] Please add do-while guard to Py_DECREF etc.

2009-04-05 Thread Georg Brandl
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

[issue993580] inspect.findsource does not call linecache.checkcache

2009-04-05 Thread Georg Brandl
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

[issue1030499] os.path.join() does not raise TypeError

2009-04-05 Thread Georg Brandl
Georg Brandl added the comment: +1 for duck typing. -- nosy: +georg.brandl resolution: -> rejected status: open -> closed ___ Python tracker <http://bugs.python.org/iss

[issue836058] socket.send() on Win98 behaves as nonblocking when timeout is set

2009-04-05 Thread Georg Brandl
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

[issue831574] Solaris term.h needs curses.h

2009-04-05 Thread Georg Brandl
Changes by Georg Brandl : -- status: open -> pending ___ Python tracker <http://bugs.python.org/issue831574> ___ ___ Python-bugs-list mailing list Unsubscri

[issue813198] Migrate PEP material to docs

2009-04-05 Thread Georg Brandl
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 ->

[issue809887] Improve pdb breakpoint feedback

2009-04-05 Thread Georg Brandl
Georg Brandl added the comment: Why do you propose closing? -- nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/issue809887> ___ ___ Python-bug

[issue602893] cgitb tracebacks not accessible

2009-04-05 Thread Georg Brandl
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

[issue957381] bdist_rpm fails on redhat9, fc1, fc2

2009-04-05 Thread Georg Brandl
Changes by Georg Brandl : -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/issue957381> ___ ___ Python-bugs-list

[issue1169193] Handle ungzipped man pages in rpm builds correctly

2009-04-05 Thread Georg Brandl
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/

[issue848910] Enable crosscompilation

2009-04-05 Thread Georg Brandl
Georg Brandl added the comment: Agreed. -- nosy: +georg.brandl resolution: -> out of date status: open -> closed ___ Python tracker <http://bugs.python.org/is

[issue500698] Taint a la Perl?

2009-04-05 Thread Georg Brandl
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 ->

[issue1170065] HTTPResponse.getheaders() returns lowercased header names

2009-04-05 Thread Georg Brandl
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/

[issue736428] allow HTMLParser error recovery

2009-04-05 Thread Georg Brandl
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

[issue459007] Document sys.path on Windows

2009-04-05 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: mhammond -> georg.brandl nosy: +georg.brandl priority: high -> normal ___ Python tracker <http://bugs.python.org/is

[issue5697] heapq.nlargest does not perform stable sort

2009-04-05 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: -> rhettinger nosy: +rhettinger ___ Python tracker <http://bugs.python.org/issue5697> ___ ___ Python-bugs-list mai

[issue5698] pydoc -w doesn't produce proper HTML

2009-04-05 Thread Georg Brandl
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

[issue2519] Typing 'modules' in the interactive help system fails when imports fail

2009-04-07 Thread Georg Brandl
Changes by Georg Brandl : -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/issue2519> ___ ___ Python-bugs-list

[issue2713] Py3k warn on unicode escapes in raw strings

2009-04-07 Thread Georg Brandl
Georg Brandl added the comment: I guess it isn't... -- resolution: -> rejected status: open -> closed ___ Python tracker <http://bugs.python

[issue658693] cPickle does relative import

2009-04-07 Thread Georg Brandl
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

[issue3722] print followed by exception eats print with doctest

2009-04-07 Thread Georg Brandl
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

[issue588825] unittest.py, better error message

2009-04-07 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: collinwinter -> michael.foord nosy: +michael.foord ___ Python tracker <http://bugs.python.org/issue588825> ___ ___ Py

[issue2725] Handle ASDLSyntaxErrors gracefully

2009-04-07 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: -> georg.brandl ___ Python tracker <http://bugs.python.org/issue2725> ___ ___ Python-bugs-list mailing list Unsubscri

[issue5703] inside *currentmodule* some links is disabled

2009-04-07 Thread Georg Brandl
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

[issue5706] setuptools doesn't honor standard compiler variables

2009-04-07 Thread Georg Brandl
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

[issue5708] Tiny code polishing to unicode_repeat

2009-04-07 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: -> georg.brandl nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/issue5708> ___ ___ Python-bugs-list mai

[issue5704] Command line option '-3' should imply '-t'

2009-04-07 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: -> georg.brandl nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/issue5704> ___ ___ Python-bugs-list mai

[issue5322] Python 2.6 object.__new__ argument calling autodetection faulty

2009-04-09 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: -> pitrou nosy: +pitrou ___ Python tracker <http://bugs.python.org/issue5322> ___ ___ Python-bugs-list mailing list Un

[issue5698] pydoc -w doesn't produce proper HTML

2009-04-11 Thread Georg Brandl
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

[issue5733] py3_test_grammar.py syntax error

2009-04-11 Thread Georg Brandl
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

[issue2725] Handle ASDLSyntaxErrors gracefully

2009-04-12 Thread Georg Brandl
Georg Brandl added the comment: Committed a similar patch in r71505. -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue5706] setuptools doesn't honor standard compiler variables

2009-04-12 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: -> tarek nosy: +tarek ___ Python tracker <http://bugs.python.org/issue5706> ___ ___ Python-bugs-list mailing list Un

[issue5708] Tiny code polishing to unicode_repeat

2009-04-12 Thread Georg Brandl
Georg Brandl added the comment: Committed in r71506. -- resolution: -> accepted status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue5704] Command line option '-3' should imply '-t'

2009-04-12 Thread Georg Brandl
Georg Brandl added the comment: Added in r71507. -- resolution: -> accepted status: open -> closed ___ Python tracker <http://bugs.python.org/issue5704> ___ __

[issue1720250] PyGILState_Ensure does not acquires GIL

2009-04-12 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: georg.brandl -> ___ Python tracker <http://bugs.python.org/issue1720250> ___ ___ Python-bugs-list mailing list Unsubscri

[issue5675] string module requires bytes type for maketrans, but calling method on regular string does not

2009-04-12 Thread Georg Brandl
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

[issue5741] SafeConfigParser incorrectly detects lone percent signs

2009-04-12 Thread Georg Brandl
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/

[issue5703] inside *currentmodule* some links is disabled

2009-04-12 Thread Georg Brandl
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

<    39   40   41   42   43   44   45   46   47   48   >