[issue8013] time.asctime segfaults when given a time in the far future

2011-01-02 Thread Georg Brandl
Georg Brandl added the comment: All right, then I wonder why your checktm() doesn't check the tm_year? -- ___ Python tracker <http://bugs.python.org/i

[issue8013] time.asctime segfaults when given a time in the far future

2011-01-02 Thread Georg Brandl
Georg Brandl added the comment: (What I mean is that overwriting \n or not, the code is unsafe, so the check must be done beforehand. Why should that be left to 3.3?) -- ___ Python tracker <http://bugs.python.org/issue8

[issue8013] time.asctime segfaults when given a time in the far future

2011-01-02 Thread Georg Brandl
Georg Brandl added the comment: You cannot have both: a safe implementation and the correct behavior with glibc (not Linux!) -- except if you start special-casing. Not sure that's worth it. Note that time.asctime() is documented in time.rst to return a 24-character string, so wh

[issue8013] time.asctime segfaults when given a time in the far future

2011-01-02 Thread Georg Brandl
Georg Brandl added the comment: > There is a long tradition in keeping OS functions' > wrappers thin with an expectation that application programmers will > know the limitations/quirks of their target OSes. Sorry, but that does not apply if we trigger undefined behavior which

[issue6610] Subprocess descriptor debacle

2011-01-03 Thread Georg Brandl
Georg Brandl added the comment: Superseded by #10806. -- nosy: +georg.brandl resolution: -> duplicate status: open -> closed superseder: -> Subprocess error if fds 0,1,2 are closed ___ Python tracker <http://bugs.python.o

[issue10563] Spurious newline in time.ctime

2011-01-03 Thread Georg Brandl
Georg Brandl added the comment: This has now been superseded by the changes made for issue #8013. -- nosy: +georg.brandl resolution: -> out of date status: open -> closed superseder: -> time.asctime segfaults when given a time in the f

[issue10756] Error in atexit._run_exitfuncs [...] Exception expected for value, str found

2011-01-03 Thread Georg Brandl
Georg Brandl added the comment: I think Antoine might be interested. -- assignee: -> pitrou nosy: +pitrou ___ Python tracker <http://bugs.python.org/issu

[issue10516] Add list.clear() and list.copy()

2011-01-04 Thread Georg Brandl
Changes by Georg Brandl : -- stage: needs patch -> patch review ___ Python tracker <http://bugs.python.org/issue10516> ___ ___ Python-bugs-list mailing list Un

[issue10821] gethostbyname(gethostname()) is wrong when IP is changed

2011-01-04 Thread Georg Brandl
Georg Brandl added the comment: This is not a Python issue. gethostbyname() and gethostname() are just a wrapper for the OS's functions of the same name; you'd get the same result when coding the example in C. -- nosy: +georg.brandl resolution: -> invalid status: o

[issue10824] urandom should not block

2011-01-04 Thread Georg Brandl
Georg Brandl added the comment: Is it really necessary to do something about this? /dev/urandom being a regular file is clearly a bug in your system configuration, and I don't want to know what all the other programs will do that rely on it... -- nosy: +georg.b

[issue985064] plistlib crashes too easily on bad files

2011-01-04 Thread Georg Brandl
Georg Brandl added the comment: LGTM. -- nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/issue985064> ___ ___ Python-bugs-list mailing list Unsub

[issue8013] time.asctime segfaults when given a time in the far future

2011-01-04 Thread Georg Brandl
Georg Brandl added the comment: Thanks! -- ___ Python tracker <http://bugs.python.org/issue8013> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue10827] Functions in time module should support year < 1900 when accept2dyear = 0

2011-01-04 Thread Georg Brandl
Georg Brandl added the comment: But if it fails, why not just let it fail? -- nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/issue10827> ___ ___

[issue10130] Create epub format docs and offer them on the download page

2011-01-05 Thread Georg Brandl
Georg Brandl added the comment: Thanks, I've committed this as r87760 and r87761. -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.

[issue10838] subprocess __all__ is incomplete

2011-01-05 Thread Georg Brandl
Georg Brandl added the comment: IMO none of these three are meant to be public, and neither are they documented. (Although the docs make a reference to "the list2cmdline *method*", which should probably just be removed.) I remember a thread on python-dev about public-API-nes

[issue10839] email module should not allow some header field repetitions

2011-01-05 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: -> r.david.murray nosy: +r.david.murray ___ Python tracker <http://bugs.python.org/issue10839> ___ ___ Python-bugs-lis

[issue10842] Update third-party libraries for OS X installer builds

2011-01-06 Thread Georg Brandl
Georg Brandl added the comment: Making this a blocker for now; I'd rather not update this during RC phase. -- nosy: +benjamin.peterson priority: high -> release blocker ___ Python tracker <http://bugs.python.org

[issue10844] OS X installer: update copyright dates in app bundles

2011-01-06 Thread Georg Brandl
Georg Brandl added the comment: This looks safe enough for me to apply. Fixed in r87791. -- resolution: -> fixed stage: patch review -> status: open -> closed ___ Python tracker <http://bugs.python.or

[issue10846] typo in threading doc's: "size of the resource size"

2011-01-06 Thread Georg Brandl
Georg Brandl added the comment: Fixed in r87807. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/i

[issue10849] Backport test/__main__

2011-01-06 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: -> benjamin.peterson nosy: +benjamin.peterson ___ Python tracker <http://bugs.python.org/issue10849> ___ ___ Python-

[issue10856] documentation for ImportError parameters and attributes

2011-01-07 Thread Georg Brandl
Georg Brandl added the comment: What is there to document? ImportError has no special attributes or parameters. -- nosy: +georg.brandl resolution: -> works for me status: open -> closed ___ Python tracker <http://bugs.python.org/i

[issue10849] Backport test/__main__

2011-01-07 Thread Georg Brandl
Georg Brandl added the comment: I thought Benjamin was still RM for 2.7 and 3.1? -- assignee: loewis -> benjamin.peterson nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/issu

[issue10856] documentation for ImportError parameters and attributes

2011-01-07 Thread Georg Brandl
Georg Brandl added the comment: You are right, however, that the "args" argument is not really well documented. Fixed that in r87820. -- resolution: works for me -> fixed ___ Python tracker <http://bugs.pytho

[issue10849] Backport test/__main__

2011-01-07 Thread Georg Brandl
Georg Brandl added the comment: Oh, sure. I misinterpreted your comment. -- ___ Python tracker <http://bugs.python.org/issue10849> ___ ___ Python-bugs-list mailin

[issue10849] Backport test/__main__

2011-01-07 Thread Georg Brandl
Changes by Georg Brandl : -- nosy: -georg.brandl ___ Python tracker <http://bugs.python.org/issue10849> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue10808] ssl unwrap fails with Error 0

2011-01-07 Thread Georg Brandl
Georg Brandl added the comment: "This information" being no information, is that really all you can get out of OpenSSL? -- nosy: +georg.brandl ___ Python tracker <http://bugs.python.o

[issue10859] Is GeneratorContextManager public?

2011-01-07 Thread Georg Brandl
Georg Brandl added the comment: Not clear; see #10838. -- nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/issue10859> ___ ___ Python-bugs-list m

[issue10860] Handle empty port after port delimiter in httplib

2011-01-07 Thread Georg Brandl
Georg Brandl added the comment: Except if it's an HTTPS URL :) -- nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/issue10860> ___ ___ Pytho

[issue10865] chroot-ing breaks encodings.idna

2011-01-08 Thread Georg Brandl
Georg Brandl added the comment: This is not a bug in Python: name resolution may not work in the chroot unless you add the libraries that are loaded on the fly by the libc. It *may* also work if you make one name resolution (using socket.getaddressinfo for example) *before* chrooting. To

[issue10863] zlib.compress() fails with string

2011-01-08 Thread Georg Brandl
Georg Brandl added the comment: This is already fixed in dev docs, just needs backporting. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/i

[issue10854] Output DLL name in error message of ImportError when DLL is missing

2011-01-08 Thread Georg Brandl
Georg Brandl added the comment: No idea what a BSDL is, but a developer is definitely entitled to close a bug without resorting to a "majority" decision (what is that, anyway? should we hold monthly parliament over bugs?). You're of course free to reopen with a different requ

[issue10849] Backport test/__main__

2011-01-08 Thread Georg Brandl
Georg Brandl added the comment: > The possible downside, as with any new feature, is that code using the > new feature will not run on on previous micro (x.y.z) releases. That's absolutely no downside: I daresay 99% of test runs by developers are done at the branch head, not so

[issue2650] re.escape should not escape underscore

2011-01-08 Thread Georg Brandl
Georg Brandl added the comment: The loop looks strange to me too, not to mention inefficient compared with a regex replacement done in C. -- nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/issue2

[issue10855] wave.Wave_read.close() doesn't release file

2011-01-08 Thread Georg Brandl
Georg Brandl added the comment: This is not a bug in the implementation: the file object is only closed when you passed a file name to open(). Like other APIs that allow file names or objects to be passed in, it is the caller's responsibility to close the file object if an object was p

[issue10849] Backport test/__main__

2011-01-08 Thread Georg Brandl
Georg Brandl added the comment: Okay, that's reasonable enough. Closing (or shall we wait for the majority to consent first?) -- resolution: -> rejected status: open -> closed ___ Python tracker <http://bugs.python.

[issue10863] zlib.compress() fails with string

2011-01-08 Thread Georg Brandl
Georg Brandl added the comment: Quite right, this is now fixed in r87870. -- ___ Python tracker <http://bugs.python.org/issue10863> ___ ___ Python-bugs-list m

[issue10863] zlib.compress() fails with string

2011-01-08 Thread Georg Brandl
Changes by Georg Brandl : -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/issue10863> ___ ___ Python-bugs-list

[issue10869] ast.increment_lineno() increments root node twice

2011-01-08 Thread Georg Brandl
Georg Brandl added the comment: Thanks, fixed in r87876. Will backport to other branches. -- nosy: +georg.brandl resolution: -> accepted status: open -> closed ___ Python tracker <http://bugs.python.org/i

[issue9504] signal.signal/signal.alarm not working as expected

2011-01-08 Thread Georg Brandl
Georg Brandl added the comment: Antoine? -- assignee: -> pitrou nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/issue9504> ___ ___ Python-

[issue7372] Regression in pstats

2011-01-08 Thread Georg Brandl
Georg Brandl added the comment: This change was backported to the 2.7 branch in r83533; it should therefore be in 2.7.1, but not 2.7. -- ___ Python tracker <http://bugs.python.org/issue7

[issue10870] Last line of argparse code samples can not be read on Windows

2011-01-09 Thread Georg Brandl
Georg Brandl added the comment: I've shortened the examples in r87890. I'll also investigate why the scrollbar isn't shown below the code. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed ___

[issue10872] Add mode to TextIOWrapper repr

2011-01-09 Thread Georg Brandl
New submission from Georg Brandl : The old file type had its mode in the repr(), which I think was useful; TextIOWrapper doesn't. Can we add it back? -- assignee: pitrou messages: 125836 nosy: georg.brandl, pitrou priority: normal severity: normal status: open title: Add mo

[issue10871] argparse example use "file" instead of "open"

2011-01-09 Thread Georg Brandl
Georg Brandl added the comment: Thanks, this is now fixed in r87891. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/i

[issue10872] Add mode to TextIOWrapper repr

2011-01-09 Thread Georg Brandl
Georg Brandl added the comment: LGTM. -- ___ Python tracker <http://bugs.python.org/issue10872> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue10875] Update Regular Expression HOWTO

2011-01-09 Thread Georg Brandl
Georg Brandl added the comment: Your points 1-5 all sound valid to me. Would you like to do make a patch? I don't know what to do about the release number. Probably doesn't hurt anyone to keep it. -- nosy: +georg.brandl ___ Python trac

[issue10875] Update Regular Expression HOWTO

2011-01-09 Thread Georg Brandl
Georg Brandl added the comment: Oh right, I misread that one. Can't Windows help users right-click and select "Copy URL"? -- ___ Python tracker <http://bugs.pyt

[issue10877] Make Tools (and subdirs) a package (and subpackages)

2011-01-11 Thread Georg Brandl
Georg Brandl added the comment: I don't think this is a good idea. For one thing, it only works in a checkout or source tarball, something that most users aren't going to work with. If we now publish that they can do "import Tools.demo.redemo" and so on, confusion will

[issue10889] Fix range slicing and indexing to handle lengths > sys.maxsize

2011-01-11 Thread Georg Brandl
Georg Brandl added the comment: It's a moderate chunk of code, but lots of new tests... I'd say go for it. -- ___ Python tracker <http://bugs.python.o

[issue5109] array.array constructor very slow when passed an array object.

2011-01-11 Thread Georg Brandl
Georg Brandl added the comment: Should be fine to apply. I trust all the different code paths for different types are tested? -- ___ Python tracker <http://bugs.python.org/issue5

[issue7229] Manual entry for time.daylight can be misleading

2011-01-11 Thread Georg Brandl
Georg Brandl added the comment: It seems to me that the quoted function from bzr def local_time_offset(t=None): """Return offset of local zone from GMT, either at present or at time t.""" # python2.3 localtime() can't take None if t is No

[issue10855] wave.Wave_read.close() doesn't release file

2011-01-12 Thread Georg Brandl
Georg Brandl added the comment: I don't really see the bug here. Either you openened the file object, then you have to close it. Or wave.py opened it, then it will close it, no matter if it still has a reference or not. Of course we could set _data_chunk to None, but I'm u

[issue9880] GCC 4.6 bug with -ftree-vectorize

2011-01-12 Thread Georg Brandl
Georg Brandl added the comment: Do we have to keep this open? -- nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/issue9880> ___ ___ Python-bug

[issue10893] The docs mark staticmethod as a function

2011-01-13 Thread Georg Brandl
Georg Brandl added the comment: Fully agreed. -- ___ Python tracker <http://bugs.python.org/issue10893> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue10902] Doc type: "run_*" instead of "run*" on http://docs.python.org/library/pdb.html

2011-01-14 Thread Georg Brandl
Georg Brandl added the comment: That's the wrong way of porting though... py3k first, then 2.7 and 3.1. -- nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/is

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

2011-01-15 Thread Georg Brandl
Georg Brandl added the comment: Right, closing this one too. Thanks! -- resolution: -> wont fix status: open -> closed ___ Python tracker <http://bugs.python.org/iss

[issue10912] PyObject_RichCompare differs in behaviour from PyObject_RichCompareBool ; difference not noted in documentation

2011-01-15 Thread Georg Brandl
Georg Brandl added the comment: Sure. -- nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/issue10912> ___ ___ Python-bugs-list mailing list Unsub

[issue8754] ImportError: quote bad module name in message

2011-01-15 Thread Georg Brandl
Georg Brandl added the comment: Won't make it into 3.2. -- priority: deferred blocker -> high versions: +Python 3.3 -Python 3.2 ___ Python tracker <http://bugs.python.or

[issue3243] Support iterable bodies in httplib

2011-01-15 Thread Georg Brandl
Georg Brandl added the comment: Anything left to do here, Senthil? -- ___ Python tracker <http://bugs.python.org/issue3243> ___ ___ Python-bugs-list mailin

[issue10694] zipfile.py end of central directory detection not robust

2011-01-15 Thread Georg Brandl
Georg Brandl added the comment: Not important enough to block release. -- priority: deferred blocker -> critical ___ Python tracker <http://bugs.python.org/issu

[issue3243] Support iterable bodies in httplib

2011-01-15 Thread Georg Brandl
Changes by Georg Brandl : -- priority: deferred blocker -> critical ___ Python tracker <http://bugs.python.org/issue3243> ___ ___ Python-bugs-list mai

[issue8746] os.chflags() and os.lchflags() are not built when they should be be

2011-01-15 Thread Georg Brandl
Changes by Georg Brandl : -- priority: deferred blocker -> critical ___ Python tracker <http://bugs.python.org/issue8746> ___ ___ Python-bugs-list mai

[issue10736] test_ttk_guionly fails on OS X using ActiveState Tcl 8.5.9 (Cocoa)

2011-01-15 Thread Georg Brandl
Changes by Georg Brandl : -- priority: deferred blocker -> critical ___ Python tracker <http://bugs.python.org/issue10736> ___ ___ Python-bugs-list mai

[issue10734] test_ttk failure under Windows

2011-01-15 Thread Georg Brandl
Changes by Georg Brandl : -- priority: deferred blocker -> critical ___ Python tracker <http://bugs.python.org/issue10734> ___ ___ Python-bugs-list mai

[issue10917] PEP 333 link to CGI specification is broken

2011-01-16 Thread Georg Brandl
Georg Brandl added the comment: Fixed in r88045 (also in PEP ). -- nosy: +georg.brandl resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/i

[issue10918] **kwargs unnecessarily restricted in API

2011-01-16 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: -> bquinlan nosy: +bquinlan versions: +Python 3.3 -Python 3.2 ___ Python tracker <http://bugs.python.org/issu

[issue10917] PEP 333 link to CGI specification is broken

2011-01-16 Thread Georg Brandl
Georg Brandl added the comment: Not sure I understand you... -- ___ Python tracker <http://bugs.python.org/issue10917> ___ ___ Python-bugs-list mailing list Unsub

[issue10918] **kwargs unnecessarily restricted in concurrent.futures 'submit' API

2011-01-17 Thread Georg Brandl
Georg Brandl added the comment: def submit(*args, **kwds): and picking out self and fn from *args might indeed be the most sensible solution here. -- nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/issue10

[issue10918] **kwargs unnecessarily restricted in concurrent.futures 'submit' API

2011-01-17 Thread Georg Brandl
Georg Brandl added the comment: > The current submit definition doesn't allow that, and pulling out self, and > fn, would not be correct either. It would if they are pulled from *args. The only difference to now is that you cannot give the self and fn args as keyword args a

[issue10451] memoryview can be used to write into readonly buffer

2011-01-18 Thread Georg Brandl
Georg Brandl added the comment: So, does "critical" mean "should be release blocker"? -- ___ Python tracker <http://bugs.python.org/issue10451> ___ __

[issue10451] memoryview can be used to write into readonly buffer

2011-01-18 Thread Georg Brandl
Georg Brandl added the comment: The patch looks trivial enough. You're the memoryview guru, so if you have no doubts about it, I would say it can go in. -- ___ Python tracker <http://bugs.python.org/is

[issue10918] **kwargs unnecessarily restricted in concurrent.futures 'submit' API

2011-01-18 Thread Georg Brandl
Georg Brandl added the comment: It could be changed, as it is not an incompatible API change. However, I'd like Brian to ok it. -- ___ Python tracker <http://bugs.python.org/is

[issue10906] wsgiref should mention that CGI scripts usually expect HTTPS variable to be set to 'on'

2011-01-19 Thread Georg Brandl
Georg Brandl added the comment: The doc says "1", "yes" or "on". Looks fine to me. -- nosy: +georg.brandl resolution: -> works for me status: open -> closed ___ Python tracker

[issue10944] ctypes documentation does not mention c_bool in table of standard types

2011-01-19 Thread Georg Brandl
Georg Brandl added the comment: Fixed in r88115. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/i

[issue10950] ServerProxy returns bad XML

2011-01-19 Thread Georg Brandl
Georg Brandl added the comment: Not sure what you mean by "non-marshallable type". The Last.fm API returns the XML as an XMLRPC string, including the backslashes. I tried the same call in Ruby using the script below, and get the backslashes too. I would say this is a fault of

[issue10950] ServerProxy returns bad XML

2011-01-19 Thread Georg Brandl
Georg Brandl added the comment: BTW, you might want to exchange your API key since this one is now publicly available forever :) -- ___ Python tracker <http://bugs.python.org/issue10

[issue10953] safely eval serialized dict/list data from arbitrary string over web with no side effects

2011-01-19 Thread Georg Brandl
Georg Brandl added the comment: Have a look at ast.literal_eval(). -- nosy: +georg.brandl resolution: -> works for me status: open -> closed ___ Python tracker <http://bugs.python.org/i

[issue3341] "Suggest a change" link

2011-01-20 Thread Georg Brandl
Georg Brandl added the comment: And still this is a thing that Sphinx needs to do (already does, but needs to be finalized.) -- status: open -> closed ___ Python tracker <http://bugs.python.org/iss

[issue10906] wsgiref should mention that CGI scripts usually expect HTTPS variable to be set to 'on'

2011-01-20 Thread Georg Brandl
Georg Brandl added the comment: The doc for this function is not a place to discuss what CGI scripts do. It describes what guess_scheme() does, and it does so sufficiently. -- status: open -> closed ___ Python tracker <http://bugs.pyth

[issue10961] Pydoc touchups in new browser for 3.2

2011-01-20 Thread Georg Brandl
Georg Brandl added the comment: Sigh... that might have come a little earlier. As it is, I'll review it before rc2. -- assignee: -> georg.brandl priority: normal -> release blocker ___ Python tracker <http://bugs.python.

[issue10955] Possible regression with stdlib in zipfile

2011-01-22 Thread Georg Brandl
Georg Brandl added the comment: Patch #2 looks innocent enough to me, and is clearly an improvement. -- ___ Python tracker <http://bugs.python.org/issue10

[issue10955] Possible regression with stdlib in zipfile

2011-01-22 Thread Georg Brandl
Georg Brandl added the comment: For 3.3, we might want to consider implementing cp437 in C, as a necessary consequence of supporting import from zipfiles. Shouldn't be so hard, I guess. -- ___ Python tracker <http://bugs.python.org/is

[issue10980] http.server Header Unicode Bug

2011-01-22 Thread Georg Brandl
Georg Brandl added the comment: Armin committed the patch in r88142 and followed up with r88143 for the http.client library. Needs backporting? -- ___ Python tracker <http://bugs.python.org/issue10

[issue10949] logging.RotatingFileHandler not robust enough

2011-01-22 Thread Georg Brandl
Georg Brandl added the comment: You could have said that the py3k branch is closed for changes without tests or review... -- nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/issue10

[issue10983] Errors in http.client.HTTPConnection class (python3)

2011-01-22 Thread Georg Brandl
Georg Brandl added the comment: All your points make sense and I fixed them in r88144. Leaving this open for somebody to add a unittest that actually exercises these tunnel features. -- nosy: +georg.brandl ___ Python tracker <h

[issue10973] OS X 10.6 IDLE, tkinter: Cocoa Tk 8.5 crash when composite character typed in text field

2011-01-22 Thread Georg Brandl
Georg Brandl added the comment: Hmm. It seems better to me to accept this bug (and document it, and point out that it isn't Python's fault) than depriving 64-bit users of IDLE, or (even worse) of tkinter. If you can manage a solution that doesn't remove IDLE, I'm in f

[issue10973] OS X 10.6 IDLE, tkinter: Cocoa Tk 8.5 crash when composite character typed in text field

2011-01-22 Thread Georg Brandl
Georg Brandl added the comment: > I disagree. There aren't really "64-bit users" on OSX, thanks to fat > binaries. So if starting IDLE would start a 32-bit interpreter, users > likely won't even notice. If they do notice, they can still run in > 64-bit mode fr

[issue9509] argparse FileType raises ugly exception for missing file

2011-01-23 Thread Georg Brandl
Georg Brandl added the comment: This would be acceptable to patch; I wonder whether to swallow the exception text of IOError though. -- ___ Python tracker <http://bugs.python.org/issue9

[issue9509] argparse FileType raises ugly exception for missing file

2011-01-23 Thread Georg Brandl
Georg Brandl added the comment: Library patch looks good. Tests: Does the create_readonly_file helper work on all platforms, esp. Windows? Maybe it's better to create a different error situation? -- ___ Python tracker <http://bugs.py

[issue10954] No warning for csv.writer API change

2011-01-23 Thread Georg Brandl
Georg Brandl added the comment: Can we have a concrete proposal in the form of a patch, please? -- ___ Python tracker <http://bugs.python.org/issue10954> ___ ___

[issue10998] Remove last traces of -Q / sys.flags.division_warning / Py_DivisionWarningFlag

2011-01-24 Thread Georg Brandl
Georg Brandl added the comment: This would have been good for 3.2, but it is an API change... -- ___ Python tracker <http://bugs.python.org/issue10998> ___ ___

[issue9509] argparse FileType raises ugly exception for missing file

2011-01-24 Thread Georg Brandl
Georg Brandl added the comment: No, it sounds fine then. -- ___ Python tracker <http://bugs.python.org/issue9509> ___ ___ Python-bugs-list mailing list Unsub

[issue9723] Add shlex.quote

2011-01-24 Thread Georg Brandl
Georg Brandl added the comment: Putting quote() into shlex sounds good to me. -- nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/issue9

[issue11000] Doc: ast.parse parses source, not just expressions

2011-01-24 Thread Georg Brandl
Georg Brandl added the comment: Looks fine. -- ___ Python tracker <http://bugs.python.org/issue11000> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue10998] Remove last traces of -Q / sys.flags.division_warning / Py_DivisionWarningFlag

2011-01-24 Thread Georg Brandl
Georg Brandl added the comment: You can even argue it's a bug fix for 3.2.1, but I'd rather keep the list of changes in the rc small. -- ___ Python tracker <http://bugs.python.o

[issue11008] logging.dictConfig not documented as new in version 2.7

2011-01-27 Thread Georg Brandl
Georg Brandl added the comment: Yes, please go ahead. -- ___ Python tracker <http://bugs.python.org/issue11008> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue10940] IDLE 3.2 hangs with Cmd-M hotkey on OS X 10.6 with 64-bit installer and A/S Tk 8.5

2011-01-28 Thread Georg Brandl
Georg Brandl added the comment: Why don't we just remove IDLE... -- ___ Python tracker <http://bugs.python.org/issue10940> ___ ___ Python-bugs-list m

[issue10940] IDLE 3.2 hangs with Cmd-M hotkey on OS X 10.6 with 64-bit installer and A/S Tk 8.5

2011-01-28 Thread Georg Brandl
Georg Brandl added the comment: I was just kidding (but I wish I weren't). -- ___ Python tracker <http://bugs.python.org/issue10940> ___ ___ Python-bugs-l

[issue11054] OS X installer build script for 3.2 can no longer build with system Python on OS X 10.5

2011-01-29 Thread Georg Brandl
Georg Brandl added the comment: Looks okay to me (and any bugs are likely to become apparent when the installers are built...) -- ___ Python tracker <http://bugs.python.org/issue11

[issue10989] ssl.SSLContext(True).load_verify_locations(None, True) segfault

2011-01-29 Thread Georg Brandl
Georg Brandl added the comment: It's reviewed by Antoine, so you can commit. -- ___ Python tracker <http://bugs.python.org/issue10989> ___ ___ Python-bugs-l

[issue11032] _string: formatter_field_name_split() and formatter_parser() don't check input type

2011-01-29 Thread Georg Brandl
Georg Brandl added the comment: I think the canonical message is "expected X, not Y". Otherwise, fine to commit. -- ___ Python tracker <http://bugs.python.o

<    7   8   9   10   11   12   13   14   15   16   >