[issue1064] Test issue

2007-08-30 Thread Georg Brandl
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

[issue1063] Small typo in properties example

2007-08-30 Thread Georg Brandl
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

[issue1069] invalid file encoding results in "SyntaxError: None"

2007-08-31 Thread Georg Brandl
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:

[issue1070] unicode identifiers in error messages

2007-08-31 Thread Georg Brandl
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",

[issue1068] Documentation Updates for PEP 3101 string formatting

2007-08-31 Thread Georg Brandl
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

[issue1071] unicode.translate() doesn't error out on invalid translation table

2007-08-31 Thread Georg Brandl
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

[issue1072] Documentaion font size too small

2007-08-31 Thread Georg Brandl
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 &

[issue1074] python3.0-config script does not run on py3k

2007-09-01 Thread Georg Brandl
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.

[issue1072] Documentaion font size too small

2007-09-01 Thread Georg Brandl
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

[issue1072] Documentaion font size too small

2007-09-01 Thread Georg Brandl
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 <

[issue1081] file.seek allows float arguments

2007-09-01 Thread Georg Brandl
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

[issue1080] Search broken

2007-09-01 Thread Georg Brandl
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

[issue1071] unicode.translate() doesn't error out on invalid translation table

2007-09-01 Thread Georg Brandl
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

[issue1072] Documentaion font size too small

2007-09-01 Thread Georg Brandl
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-

[issue1071] unicode.translate() doesn't error out on invalid translation table

2007-09-02 Thread Georg Brandl
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

[issue1078] cachersrc.py using tuple unpacking args

2007-09-02 Thread Georg Brandl
Changes by Georg Brandl: -- assignee: -> collinwinter nosy: +collinwinter __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1078> __ ___ Python-bugs-li

[issue1092] Unexpected results in Tutorial about Unicode

2007-09-03 Thread Georg Brandl
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

[issue1090] doctools/sphinx/web/application.py does not start on windows

2007-09-03 Thread Georg Brandl
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

[issue883466] quopri encoding & Unicode

2007-09-03 Thread Georg Brandl
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.

[issue1078] cachersrc.py using tuple unpacking args

2007-09-03 Thread Georg Brandl
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

[issue1043] test_builtin failure on Windows

2007-09-03 Thread Georg Brandl
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

[issue1091] py3k Mac installation errors

2007-09-03 Thread Georg Brandl
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

[issue1045] Performance regression in 2.5

2007-09-03 Thread Georg Brandl
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/

[issue1077] itertools missing, causes interactive help to break

2007-09-03 Thread Georg Brandl
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

[issue1071] unicode.translate() doesn't error out on invalid translation table

2007-09-03 Thread Georg Brandl
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/

[issue1092] Unexpected results in Tutorial about Unicode

2007-09-04 Thread Georg Brandl
Georg Brandl added the comment: OK, closing. -- resolution: -> fixed status: open -> closed __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1092> __ _

[issue1106] Error in random.shuffle

2007-09-04 Thread Georg Brandl
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

[issue1107] 2to3, lambda with non-tuple argument inside parenthesis

2007-09-04 Thread Georg Brandl
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

[issue1684991] Explain __method__ lookup semantics for new-style classes

2007-09-05 Thread Georg Brandl
Georg Brandl added the comment: Added a paragraph in rev. 57992, 57993. -- resolution: -> fixed status: open -> closed _ Tracker <[EMAIL PROTECTED]> <http://bugs.python.o

[issue1118] hashlib module fails with TypeError

2007-09-06 Thread Georg Brandl
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", "

[issue1119] Search index is messed up after partial rebuilding

2007-09-06 Thread Georg Brandl
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

[issue1116] reference in extending doc to non-existing file

2007-09-06 Thread Georg Brandl
Georg Brandl added the comment: Fixed in rev. 58012, 58013. -- nosy: +georg.brandl resolution: -> accepted status: open -> closed __ Tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue1117] Spurious warning about missing _sha256 and _sha512 when not needed

2007-09-06 Thread Georg Brandl
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

[issue685846] raw_input defers alarm signal

2007-09-06 Thread Georg Brandl
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

[issue706406] fix bug #685846: raw_input defers signals

2007-09-06 Thread Georg Brandl
Georg Brandl added the comment: Set as superseder of #685846 and #1113. -- nosy: +georg.brandl Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/is

[issue1113] interrupt_main() fails to interrupt raw_input()

2007-09-06 Thread Georg Brandl
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

[issue1095] make install failed

2007-09-06 Thread Georg Brandl
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

[issue1117] Spurious warning about missing _sha256 and _sha512 when not needed

2007-09-06 Thread Georg Brandl
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

[issue1095] make install failed

2007-09-06 Thread Georg Brandl
Georg Brandl added the comment: Perhaps Martin knows something? -- assignee: -> loewis nosy: +loewis __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.o

[issue1095] make install failed

2007-09-06 Thread Georg Brandl
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?

[issue1113] interrupt_main() fails to interrupt raw_input()

2007-09-06 Thread Georg Brandl
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.

[issue1125] bytes.split shold have same interface as str.split, or different name

2007-09-06 Thread Georg Brandl
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

[issue1708326] imp.find_module doc ambiguity

2007-09-07 Thread Georg Brandl
Changes by Georg Brandl: -- status: pending -> closed _ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1708326> _ ___ Python-bugs-list mailing li

[issue1767242] os.chmod failure

2007-09-07 Thread Georg Brandl
Changes by Georg Brandl: -- status: pending -> closed _ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1767242> _ ___ Python-bugs-list mailing li

[issue1209562] add single html files

2007-09-07 Thread Georg Brandl
Changes by Georg Brandl: -- status: pending -> closed _ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1209562> _ ___ Python-bugs-list mailing li

[issue1749583] expanduser("~") on Windows looks for HOME first

2007-09-07 Thread Georg Brandl
Changes by Georg Brandl: -- status: pending -> closed _ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1749583> _ ___ Python-bugs-list mailing li

[issue1095] make install failed

2007-09-07 Thread Georg Brandl
Georg Brandl added the comment: Committed as rev. 58043, 58044. -- resolution: accepted -> fixed status: open -> closed __ Tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue1129] OpenSSL detection broken for Python 3.0a1

2007-09-07 Thread Georg Brandl
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

[issue1132] compile error in poplib.py

2007-09-09 Thread Georg Brandl
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]>

[issue1121] Document inspect.getfullargspec()

2007-09-11 Thread Georg Brandl
Changes by Georg Brandl: -- assignee: -> georg.brandl nosy: +georg.brandl __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1121> __ ___ Python-bugs-li

[issue1122] PyTuple_Size and PyTuple_GET_SIZE return type documentation incorrect

2007-09-11 Thread Georg Brandl
Changes by Georg Brandl: -- assignee: -> georg.brandl nosy: +georg.brandl __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1122> __ ___ Python-bugs-li

[issue1152] Bug in documentation for SimpleXMLRPCServer

2007-09-11 Thread Georg Brandl
Changes by Georg Brandl: -- assignee: -> georg.brandl nosy: +georg.brandl __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1152> __ ___ Python-bugs-li

[issue1136] Bdb documentation

2007-09-12 Thread Georg Brandl
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

[issue1136] Bdb documentation

2007-09-12 Thread Georg Brandl
Georg Brandl added the comment: Okay, committed as rev. 58112, 58113. Thank you! -- resolution: -> accepted status: open -> closed __ Tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue1152] Bug in documentation for SimpleXMLRPCServer

2007-09-12 Thread Georg Brandl
Georg Brandl added the comment: Fixed in rev. 58114. -- resolution: -> fixed status: open -> closed __ Tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue1122] PyTuple_Size and PyTuple_GET_SIZE return type documentation incorrect

2007-09-12 Thread Georg Brandl
Georg Brandl added the comment: Fixed in rev. 58115, 58116 (2.5). Thanks! -- resolution: -> fixed status: open -> closed __ Tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue1139] PyFile_Encoding should be PyFile_SetEncoding

2007-09-12 Thread Georg Brandl
Georg Brandl added the comment: Fixed in rev. 58117, 58118 (2.5). Thanks! -- resolution: -> fixed status: open -> closed __ Tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue1598083] Top-level exception handler writes to stdout unsafely

2007-09-12 Thread Georg Brandl
Georg Brandl added the comment: I'll look into it. -- nosy: +georg.brandl _ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1598083> _ ___

[issue1154] Carbon.CF memory leak

2007-09-12 Thread Georg Brandl
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

[issue1156] Suggested change to _exit function description in os module documentation

2007-09-12 Thread Georg Brandl
Georg Brandl added the comment: Assigning to Martin. -- assignee: -> loewis nosy: +georg.brandl, loewis __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.o

[issue1153] help(pickle) fails: unorderable types: type() < type()

2007-09-12 Thread Georg Brandl
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

[issue1121] Document inspect.getfullargspec()

2007-09-12 Thread Georg Brandl
Georg Brandl added the comment: Documented in rev. 1121. -- resolution: -> fixed status: open -> closed __ Tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue1207379] class property fset not working

2007-09-12 Thread Georg Brandl
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

[issue1120] "make altinstall" installs pydoc, idle, smtpd.py with broken shebang lines

2007-09-12 Thread Georg Brandl
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

[issue1098] decode_unicode doesn't nul-terminate

2007-09-12 Thread Georg Brandl
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: ->

[issue1686386] Python SEGFAULT on invalid superclass access

2007-09-12 Thread Georg Brandl
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/

[issue1019] Cleanup pass on _curses and _curses_panel

2007-09-12 Thread Georg Brandl
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]>

[issue1038] [py3k] pdb does not work in python 3000

2007-09-12 Thread Georg Brandl
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

[issue1145] Allow str.join to join non-string types (as per PEP 3100)

2007-09-13 Thread Georg Brandl
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

[issue1162] Python doesn't compile on Microsoft Visual Studio 2008 "Orcas" Beta 2

2007-09-13 Thread Georg Brandl
Changes by Georg Brandl: -- status: open -> closed __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1162> __ ___ Python-bugs-list mailing list Uns

[issue1146] TextWrap vs words 1-character shorter than the width

2007-09-14 Thread Georg Brandl
Georg Brandl added the comment: I'll look at this shortly. -- assignee: -> georg.brandl nosy: +georg.brandl __ Tracker <[EMAIL PROTECTED]> <http://bugs.pyt

[issue1168] complex arithmetic: strange results with "imag"

2007-09-16 Thread Georg Brandl
Georg Brandl added the comment: Exactly. -- nosy: +georg.brandl resolution: -> invalid status: open -> closed __ Tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue1131] Reference Manual: "for statement" links to "break statement"

2007-09-18 Thread Georg Brandl
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

[issue1173] yield expressions not documented in Language Reference

2007-09-18 Thread Georg Brandl
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 &

[issue1174] new generator methods not documented in Library Reference

2007-09-18 Thread Georg Brandl
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 &

[issue971965] urllib2 raises exception with non-200 success codes.

2007-09-18 Thread Georg Brandl
Changes by Georg Brandl: -- resolution: -> duplicate status: open -> closed superseder: -> urllib* 20x responses not OK? Tracker <[EMAIL PROTECTED]> <http://bugs.pyth

[issue1135] xview/yview of Tix.Grid is broken

2007-09-18 Thread Georg Brandl
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]&

[issue1169] Option -OO doesn't remove docstrings from functions

2007-09-18 Thread Georg Brandl
Georg Brandl added the comment: Fixed in rev. 58204, 58205 (2.5). -- resolution: -> fixed status: open -> closed __ Tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue1177] urllib* 20x responses not OK?

2007-09-19 Thread Georg Brandl
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/

[issue1541463] Optimizations for cgi.FieldStorage methods

2007-09-19 Thread Georg Brandl
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

[issue1541463] Optimizations for cgi.FieldStorage methods

2007-09-19 Thread Georg Brandl
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

[issue1692335] Fix exception pickling: Move initial args assignment to BaseException.__new__

2007-09-20 Thread Georg Brandl
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

[issue1541463] Optimizations for cgi.FieldStorage methods

2007-09-20 Thread Georg Brandl
Georg Brandl added the comment: Okay, you've convinced me. Committed rev. 58218. -- resolution: -> accepted status: open -> closed _ Tracker <[EMAIL PROTECTED]> <http://bugs.pyt

[issue1613130] str.split creates new string even if pattern not found

2007-09-20 Thread Georg Brandl
Changes by Georg Brandl: -- type: -> rfe versions: +Python 2.6, Python 3.0 _ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1613130> _ ___ P

[issue1176] str.split() takes no keyword arguments (Should this be expected?)

2007-09-20 Thread Georg Brandl
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

[issue1182] Paticular decimal mod operation wrongly output NaN.

2007-09-20 Thread Georg Brandl
Changes by Georg Brandl: -- assignee: -> facundobatista nosy: +facundobatista __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1182> __ ___ Python-bu

[issue1686386] Python SEGFAULT on tuple.__repr__ and str()

2007-09-20 Thread Georg Brandl
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:

[issue1696444] Adding an index method to tuples

2007-09-20 Thread Georg Brandl
Changes by Georg Brandl: -- components: +Interpreter Core -None type: -> rfe versions: +Python 2.6, Python 3.0 _ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/

[issue1181] Redefine clear() for os.environ to use unsetenv() if possible

2007-09-20 Thread Georg Brandl
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

[issue1189] Documentation for tp_as_number tp_as_sequence tp_as_mapping

2007-09-22 Thread Georg Brandl
Changes by Georg Brandl: -- assignee: -> georg.brandl nosy: +georg.brandl __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1189> __ ___ Python-bugs-li

[issue1194] The reduce() documentation is lost in Python 3.0a1

2007-09-24 Thread Georg Brandl
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

[issue1186] optparse documentation: -- being collapsed to - in HTML

2007-09-24 Thread Georg Brandl
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 <

[issue1195] Problems on Linux with Ctrl-D and Ctrl-C during raw_input

2007-09-24 Thread Georg Brandl
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

[issue1196] int() documentation does not specify default radix

2007-09-24 Thread Georg Brandl
Changes by Georg Brandl: -- assignee: -> georg.brandl nosy: +georg.brandl __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1196> __ ___ Python-bugs-li

[issue1186] optparse documentation: -- being collapsed to - in HTML

2007-09-24 Thread Georg Brandl
Georg Brandl added the comment: Okay, applied that workaround in rev. 58243. -- assignee: fdrake -> georg.brandl __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.o

[issue1196] int() documentation does not specify default radix

2007-09-24 Thread Georg Brandl
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.

[issue1189] Documentation for tp_as_number tp_as_sequence tp_as_mapping

2007-09-24 Thread Georg Brandl
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

[issue1177] urllib* 20x responses not OK?

2007-09-24 Thread Georg Brandl
Georg Brandl added the comment: Applied your patch as r58247. __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1177> __ ___ Python-bugs-list mailing list Unsubs

[issue1199] Documentation for tp_as_number... version 2.6

2007-09-24 Thread Georg Brandl
Changes by Georg Brandl: -- assignee: -> georg.brandl nosy: +georg.brandl __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1199> __ ___ Python-bugs-li

[issue1209] IOError won't accept tuples longer than 3

2007-09-26 Thread Georg Brandl
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.

<    1   2   3   4   5   6   7   8   9   10   >