[issue10692] imap lib server compabilities

2010-12-13 Thread Yevgeniy
Yevgeniy added the comment: > By the way, an SSL login runs just fine for me against my Courier-IMAP > server. Does regular IMAP work for you? No it dose not. When i run: M = myimaplib.IMAP4(host) M.login(username, password) I got "error: STARTTLS required" -- ___

[issue10700] python pickle.dumps AssertionError

2010-12-13 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: This looks like another duplicate of issue1062277. -- nosy: +belopolsky ___ Python tracker ___ __

[issue10700] python pickle.dumps AssertionError

2010-12-13 Thread HwidongNa
New submission from HwidongNa : I'm trying to pickle a class instance containing two lists of another instances. The instances in the two lists have attributes that refer instances of each other. Here are the classes. import pickle from copy import copy class Graph: def __init__(self):

[issue2226] Small _abcoll Bugs / Oddities

2010-12-13 Thread Raymond Hettinger
Raymond Hettinger added the comment: Yes, if you have a chance to think it through, it would be nice to get this fixed-up. -- assignee: -> stutzbach versions: -Python 3.1 ___ Python tracker _

[issue6731] Add option of non-zero exit status of setup.py when building of extensions has failed

2010-12-13 Thread R. David Murray
Changes by R. David Murray : -- type: -> feature request versions: +Python 3.3 -Python 3.2 ___ Python tracker ___ ___ Python-bugs-list

[issue10530] distutils2 should allow the installing of python files with invalid syntax

2010-12-13 Thread R. David Murray
Changes by R. David Murray : -- type: -> feature request ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:

[issue10262] Add --soabi option to `configure`

2010-12-13 Thread R. David Murray
R. David Murray added the comment: What's the status of this? It sounds like it something that should be taken care of before the 3.2 release, but I know there has been other activity in this area and I haven't looked closely enough to understand the issues involved. -- nosy: +r.davi

[issue8863] Display Python backtrace on SIGSEGV, SIGFPE and fatal error

2010-12-13 Thread R. David Murray
Changes by R. David Murray : -- versions: +Python 3.3 -Python 3.2 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue8863] Display Python backtrace on SIGSEGV, SIGFPE and fatal error

2010-12-13 Thread R. David Murray
Changes by R. David Murray : -- stage: -> patch review type: -> feature request ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue10692] imap lib server compabilities

2010-12-13 Thread R. David Murray
R. David Murray added the comment: By the way, an SSL login runs just fine for me against my Courier-IMAP server. Does regular IMAP work for you? -- ___ Python tracker ___ ___

[issue10692] imap lib server compabilities

2010-12-13 Thread R. David Murray
R. David Murray added the comment: Well, in that case your telnet session doesn't tell us all that much, since you are using IMAP4_SSL in the Python but regular non-SSL in the telnet session. Are you sure it is even the same server running on the SSL port? -- ___

[issue10670] Provide search scope limits

2010-12-13 Thread R. David Murray
R. David Murray added the comment: This feature request should be submitted to the Sphinx tracker, since the docs search facility is provided by Sphinx. -- nosy: +r.david.murray resolution: -> invalid stage: -> committed/rejected status: open -> closed type: -> feature request

[issue6559] add pass_fds paramter to subprocess.Popen()

2010-12-13 Thread R. David Murray
Changes by R. David Murray : -- title: [PATCH]add pass_fds paramter to subprocess.Popen() -> add pass_fds paramter to subprocess.Popen() type: -> feature request ___ Python tracker

[issue10541] regrtest.py -T broken

2010-12-13 Thread R. David Murray
Changes by R. David Murray : -- stage: -> needs patch type: -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list Uns

[issue6721] Locks in python standard library should be sanitized on fork

2010-12-13 Thread R. David Murray
Changes by R. David Murray : -- stage: -> unit test needed type: -> behavior versions: -Python 2.6 ___ Python tracker ___ ___ Python

[issue6377] distutils compiler switch ignored

2010-12-13 Thread R. David Murray
Changes by R. David Murray : -- nosy: +eric.araujo stage: -> unit test needed type: -> behavior ___ Python tracker ___ ___ Python-bug

[issue10692] imap lib server compabilities

2010-12-13 Thread Yevgeniy
Yevgeniy added the comment: >Where does the non-telnet part of your trace come from? How did you produce >it? When i got this error i set Debug = 5 in imaplib.py and run next code: import imaplib M = imaplib.IMAP4_SSL('localhost') M.login('username', 'password') M.logout() >Does this error st

[issue4180] warnings.simplefilter("always") does not make warnings always show up

2010-12-13 Thread R. David Murray
Changes by R. David Murray : -- type: -> behavior versions: +Python 3.1, Python 3.2 -Python 2.6 ___ Python tracker ___ ___ Python-bugs

[issue3657] pickle can pickle the wrong function

2010-12-13 Thread R. David Murray
R. David Murray added the comment: The randomly failing tests seem to have been the high priority issue. The remaining, eponymous issue seems to be of rather lower priority, so I'm setting it to normal. Although Tim wanted a separate issue for the pickling problem, I think there's too much

[issue6696] Profile objects should be documented

2010-12-13 Thread R. David Murray
Changes by R. David Murray : -- stage: -> needs patch type: -> behavior versions: +Python 3.2 ___ Python tracker ___ ___ Python-bugs-

[issue9775] Multiprocessing, logging and atexit play not well together

2010-12-13 Thread R. David Murray
Changes by R. David Murray : -- stage: -> unit test needed type: -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue9232] Allow trailing comma in any function argument list.

2010-12-13 Thread Andreas Stührk
Changes by Andreas Stührk : -- nosy: +Trundle ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python

[issue9232] Allow trailing comma in any function argument list.

2010-12-13 Thread Jan Kaliszewski
Jan Kaliszewski added the comment: python-dev discussion continuation: http://mail.python.org/pipermail/python-dev/2010-December/106770.html -- ___ Python tracker ___ __

[issue9162] License for multiprocessing files

2010-12-13 Thread R. David Murray
R. David Murray added the comment: Committed in r87225, r87226, and r87227. Thanks, Daniel. -- nosy: +r.david.murray resolution: -> fixed stage: needs patch -> committed/rejected status: open -> closed ___ Python tracker

[issue9232] Allow trailing comma in any function argument list.

2010-12-13 Thread Jan Kaliszewski
Jan Kaliszewski added the comment: >From 10682: The patch proposed in this (#9232) issue does not fix call syntax >but def sytax only. I think it should fix call sytax as well (see code >examples in #10682). -- ___ Python tracker

[issue2226] Small _abcoll Bugs / Oddities

2010-12-13 Thread R. David Murray
Changes by R. David Murray : -- stage: -> unit test needed type: -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue9232] Allow trailing comma in any function argument list.

2010-12-13 Thread Eric Smith
Changes by Eric Smith : -- nosy: +eric.smith ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue10699] fix incorrect help doc with time.tzset

2010-12-13 Thread R. David Murray
Changes by R. David Murray : -- title: [patch] fix incorrect help doc with time.tzset -> fix incorrect help doc with time.tzset ___ Python tracker ___ __

[issue10699] [patch] fix incorrect help doc with time.tzset

2010-12-13 Thread R. David Murray
R. David Murray added the comment: Thanks. Fixed in py3k in r87221. I'll backport it when I backport my other doc updates. FYI, 'trunk' is no longer a live branch. Development trunk is now py3k. 2.6 only gets security fixes. -- nosy: +r.david.murray resolution: -> fixed stage:

[issue9234] argparse: aliases for positional arguments (subparsers)

2010-12-13 Thread Éric Araujo
Éric Araujo added the comment: Thanks for the quick update! +1 (1alias1,1alias2) I think there should be a space after the comma. Maybe “aliases:” could also be prepended, for clarity. Help about the docs: http://docs.python.org/dev/documenting/ -- _

[issue1078919] email.Header (via add_header) encodes non-ASCII content incorrectly

2010-12-13 Thread R. David Murray
R. David Murray added the comment: Committed the default-to-utf8 fix in r87217, splitting up the tests as suggested by Barry. Backported to 3.1 in r87218. Updated the documentation for 2.7 in r87219. -- resolution: -> fixed stage: patch review -> committed/rejected status: open ->

[issue9234] argparse: aliases for positional arguments (subparsers)

2010-12-13 Thread Adrian Sampson
Adrian Sampson added the comment: Sorry I'm slow. Here's a new patch that includes tests. I'll also write documentation if that would be helpful, although I'm not very familiar with the style recommendations. -- Added file: http://bugs.python.org/file20034/argparse-aliases.patch

[issue9232] Allow trailing comma in any function argument list.

2010-12-13 Thread Nick Coghlan
Nick Coghlan added the comment: >From 10682: the grammar is also inconsistent as to when trailing commas are >allowed in function calls, not just definitions. -- ___ Python tracker

[issue10682] With '*args' or even bare '*' in def/call argument list, trailing comma causes SyntaxError

2010-12-13 Thread Nick Coghlan
Changes by Nick Coghlan : -- resolution: rejected -> duplicate superseder: -> Allow trailing comma in any function argument list. ___ Python tracker ___

[issue9232] Allow trailing comma in any function argument list.

2010-12-13 Thread Nick Coghlan
Nick Coghlan added the comment: An open issue more accurately reflects the lack of consensus than a closed one, though. We just won't commit it until there *is* consensus that it is a better option than the status quo. -- keywords: +after moratorium -patch resolution: rejected -> sta

[issue10699] [patch] fix incorrect help doc with time.tzset

2010-12-13 Thread Garrett Cooper
New submission from Garrett Cooper : The following patch fixes the help docstring as time.tzset when called doesn't require any arguments (as noted in the source and also in the library documentation). The patch produced was against trunk, but this appears to be an issue on release-maint26 an

[issue10698] doctest load_tests() typo

2010-12-13 Thread R. David Murray
R. David Murray added the comment: Thanks. Fixed in r87216. -- nosy: +r.david.murray resolution: -> fixed stage: -> committed/rejected status: open -> closed type: -> behavior ___ Python tracker __

[issue9232] Allow trailing comma in any function argument list.

2010-12-13 Thread Martin v . Löwis
Martin v. Löwis added the comment: I stand by my evaluation: there is clearly no consensus about this change, so it certainly requires more discussion, potentially leading to proponents being asked to write a PEP. -- ___ Python tracker

[issue10665] Expand unicodedata module documentation

2010-12-13 Thread Martin v . Löwis
Martin v. Löwis added the comment: > Are you going to reject say issue2636 on this basis? :-) Has *any* > patch ever been rejected as incomplete? I certainly did close patches for that reason. Before that, I keep asking people not to post W-I-P. As for issue2636, I have been really tempted to

[issue10618] regression in subprocess.call() command quoting

2010-12-13 Thread Mads Kiilerich
Changes by Mads Kiilerich : -- nosy: +kiilerix ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue10698] doctest load_tests() typo

2010-12-13 Thread Andrew Dalke
New submission from Andrew Dalke : doctest.html Section 24.2.5 "Unittest API" says: def load_tests(loader, tests, ignore): tests.addTests(doctest.DocTestSuite(my_module_with_doctests)) return test That last line should be "return tests" -- assignee: d...@python components: Doc

[issue10697] host and port attributes not documented well in function urllib.parse.urlparse and urlsplit

2010-12-13 Thread JTMoon79
JTMoon79 added the comment: Doh! I feel a bit silly. I didn't notice 'hostname' and 'port' in >>> dir(urllib.parse.urlparse(r'http://foo.bar.com:80/blarg?a=1&b=2')) [... 'count', 'fragment', 'geturl', 'hostname', 'index' , 'netloc', 'params', 'password', 'path', 'port', 'query', 'scheme', 'use

[issue10697] host and port attributes not documented well in function urllib.parse.urlparse and urlsplit

2010-12-13 Thread Fred L. Drake, Jr.
Changes by Fred L. Drake, Jr. : -- versions: +Python 2.7 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:/

[issue10697] host and port attributes not documented well in function urllib.parse.urlparse and urlsplit

2010-12-13 Thread Fred L. Drake, Jr.
Fred L. Drake, Jr. added the comment: These attributes were added in Python 2.5. Documentation improvements should be backported to 2.7 and 3.1. -- nosy: +fdrake ___ Python tracker ___

[issue10695] telnetlib.Telnet port number int/str inconsistency

2010-12-13 Thread R. David Murray
Changes by R. David Murray : -- nosy: +jackdied ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyt

[issue10697] host and port attributes not documented well in function urllib.parse.urlparse and urlsplit

2010-12-13 Thread R. David Murray
R. David Murray added the comment: The repr gives the primary components defined by the URL. The subfields are provided as attributes of the result. This is documented in the example at the top of the chapter, but it is not, IMO, well documented in the rest of the chapter. I'm not sure whe

[issue10696] port not split in function urllib.parse.urlsplit

2010-12-13 Thread R. David Murray
Changes by R. David Murray : -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://m

[issue10696] port not split in function urllib.parse.urlsplit

2010-12-13 Thread R. David Murray
R. David Murray added the comment: Take another look at the documentation. http://docs.python.org/dev/library/urllib.parse.html >>> import urllib.parse >>> o = urllib.parse.urlsplit("http://foo.bar.com:80/blarg?a=1&b=2";) >>> o SplitResult(scheme='http', netloc='foo.bar.com:80', path='/blarg',

[issue10696] port not split in function urllib.parse.urlsplit

2010-12-13 Thread JTMoon79
JTMoon79 added the comment: see comments at http://bugs.python.org/issue10697#msg123898 -- ___ Python tracker ___ ___ Python-bugs-lis

[issue10697] port not split in function urllib.parse.urlparse

2010-12-13 Thread JTMoon79
New submission from JTMoon79 : Copy of issue 10696 This issue is exactly the same as issue 10696 except it affects a different function, urllib.parse.urlparse (instead of urllib.parse.urlsplit). urlparse function from urllib.parse.urlparse does not return the port field. REPRO STEPS: >>> import

[issue10696] port not split in function urllib.parse.urlsplit

2010-12-13 Thread JTMoon79
New submission from JTMoon79 : urlsplit function from urllib.parse.urlsplit does not return the port field. Repro steps >>> import urllib >>> import urllib.parse >>> urllib.parse.urlsplit(r'http://foo.bar.com:80/blarg?a=1&b=2') RETURNS: SplitResult(scheme='http', netloc='foo.bar.com:80', path='/

[issue9232] Allow trailing comma in any function argument list.

2010-12-13 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: > In #10682, several committers indicated that they would prefer > not to change this. Issue #10682 has been open for less than 24 hours before it was rejected. In contrast, this issue was open after an almost week-long discussion on python-dev where th

[issue6075] Patch for IDLE/OS X to work with Tk-Cocoa

2010-12-13 Thread Ned Deily
Changes by Ned Deily : -- assignee: -> ned.deily nosy: +ned.deily versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6 ___ Python tracker ___ ___

[issue9012] Separate compilation of time and datetime modules

2010-12-13 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: > it sounds like the patch is ready for commit. there are two pending patches here: time.diff - a hack that makes _time.c look like a module while it is not. add_time_to_vc8_build.diff - a patch for VC 8.0 project file. I don't like time.diff because i

[issue10695] telnetlib.Telnet port number int/str inconsistency

2010-12-13 Thread Christian S. Perone
New submission from Christian S. Perone : When you use telnetlib with a "str" parameter as Port Number: tel = telnetlib.Telnet("10.0.2.9", "8123") tel.read_until("login: ") It works fine, except if you set the debuglevel: tel.set_debuglevel(30) Then the follow exception is thrown: Traceback (m

[issue10340] asyncore doesn't properly handle EINVAL on OSX

2010-12-13 Thread R. David Murray
R. David Murray added the comment: "Might even make sense" to backport doesn't sound like a definite, so I've removed 2.6 and 2.5 from versions. You'll want to ask the release managers for a decision if you want to backport. -- nosy: +r.david.murray _

[issue10340] asyncore doesn't properly handle EINVAL on OSX

2010-12-13 Thread R. David Murray
Changes by R. David Murray : -- versions: -Python 2.5, Python 2.6 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscrib

[issue9012] Separate compilation of time and datetime modules

2010-12-13 Thread R. David Murray
R. David Murray added the comment: Bump. This bug has priority high and it sounds like the patch is ready for commit. -- nosy: +r.david.murray ___ Python tracker ___ __

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

2010-12-13 Thread Kevin Hendricks
New submission from Kevin Hendricks : The current version of zipfile.py is not robust to slight errors at the end of zip archives. Many file servers **improperly** append a new line to the end of files that do not have a new line when they are uploaded from a browser. This bug ends up adding

[issue2636] Regexp 2.7 (modifications to current re 2.2.2)

2010-12-13 Thread Éric Araujo
Changes by Éric Araujo : -- stage: -> patch review type: compile error -> feature request versions: +Python 3.3 -Python 2.6 ___ Python tracker ___ ___

[issue10665] Expand unicodedata module documentation

2010-12-13 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: On Fri, Dec 10, 2010 at 6:04 PM, Martin v. Löwis wrote: .. >> Why?  I thought "release early, release often" was a good thing. > > Create a branch for that, or post an issue on Rietveld. Martin, This is a documentation patch affecting a single HTML page

[issue6302] Add decode_header_as_string method to email.utils

2010-12-13 Thread R. David Murray
Changes by R. David Murray : -- title: email.header.decode_header data types are inconsistent and incorrectly documented -> Add decode_header_as_string method to email.utils type: behavior -> feature request ___ Python tracker

[issue6302] email.header.decode_header data types are inconsistent and incorrectly documented

2010-12-13 Thread R. David Murray
Changes by R. David Murray : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.

[issue6302] email.header.decode_header data types are inconsistent and incorrectly documented

2010-12-13 Thread R. David Murray
R. David Murray added the comment: Drat, missed this one when I was reviewing my issues for feature requests because I didn't change the type :( -- versions: +Python 3.3 -Python 3.2 ___ Python tracker

[issue10687] Python fails to install with empty ABI flags

2010-12-13 Thread Barry A. Warsaw
Changes by Barry A. Warsaw : -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue10687] Python fails to install with empty ABI flags

2010-12-13 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: Thanks for testing it! r87213 -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubsc

[issue2394] [Py3k] Finish the memoryview object implementation

2010-12-13 Thread R. David Murray
R. David Murray added the comment: It looks to me like the critical parts of this have been done, so I'm downgrading the priority. -- nosy: +r.david.murray priority: critical -> high versions: +Python 3.2 -Python 3.1 ___ Python tracker

[issue10690] IDLE Crash when running/saving Module

2010-12-13 Thread Ned Deily
Changes by Ned Deily : -- status: open -> pending ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.p

[issue10690] IDLE Crash when running/saving Module

2010-12-13 Thread Ned Deily
Changes by Ned Deily : -- Removed message: http://bugs.python.org/msg123868 ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue10690] IDLE Crash when running/saving Module

2010-12-13 Thread Ned Deily
Ned Deily added the comment: [updated to refer to correct issue - thanks!] Without more specific details on exactly how to reproduce the problem, I assume you are seeing something like the problem reported in Issue9763. There are several reported problems with IDLEs that are linked with the

[issue10634] Windows timezone changes not reflected by time.localtime

2010-12-13 Thread R. David Murray
Changes by R. David Murray : -- resolution: -> invalid stage: unit test needed -> committed/rejected ___ Python tracker ___ ___ Pytho

[issue10690] IDLE Crash when running/saving Module

2010-12-13 Thread R. David Murray
Changes by R. David Murray : -- status: open -> pending ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://

[issue10690] IDLE Crash when running/saving Module

2010-12-13 Thread R. David Murray
R. David Murray added the comment: Ned, did you mean issue 9763? -- nosy: +r.david.murray status: pending -> open ___ Python tracker ___

[issue10687] Python fails to install with empty ABI flags

2010-12-13 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis added the comment: The patch works correctly for me. -- ___ Python tracker ___ ___ Python-bugs-li

[issue10687] Python fails to install with empty ABI flags

2010-12-13 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: I've tested the following patch with both ./configure --prefix=/tmp/python and ./configure --without-pymalloc --prefix=/tmp/python. Both seem to work as expected. Note that this patch fixes a small drive-by bug I found, and it makes editing Makefile.pre.in

[issue10188] tempfile.TemporaryDirectory may throw errors at shutdown

2010-12-13 Thread Nick Coghlan
Nick Coghlan added the comment: Ah, yes, I failed to account for the additional string escaping performed by the IO stream. I think I've been bitten by that before, but I always forget since I try to always use forward slashes for paths, even on Windows. r87212 modifies the test to ensure tha

[issue10687] Python fails to install with empty ABI flags

2010-12-13 Thread Barry A. Warsaw
Changes by Barry A. Warsaw : -- assignee: -> barry ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue9234] argparse: aliases for positional arguments (subparsers)

2010-12-13 Thread Raymond Hettinger
Raymond Hettinger added the comment: +1 on this feature request -- nosy: +rhettinger ___ Python tracker ___ ___ Python-bugs-list maili

[issue10188] tempfile.TemporaryDirectory may throw errors at shutdown

2010-12-13 Thread Antoine Pitrou
Antoine Pitrou added the comment: A test still fails under Windows: == FAIL: test_warnings_on_cleanup (test.test_tempfile.test_TemporaryDirectory) -- Traceback

[issue10687] Python fails to install with empty ABI flags

2010-12-13 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: Please include your ./configure command too -- ___ Python tracker ___ ___ Python-bugs-list mailing

[issue10692] imap lib server compabilities

2010-12-13 Thread R. David Murray
R. David Murray added the comment: Where does the non-telnet part of your trace come from? How did you produce it? Does this error still occur using 2.7? (Python 2.6 is in security fix only mode at this point.) -- nosy: +eric.smith, r.david.murray stage: -> unit test needed type:

[issue10453] Add -h/--help option to compileall

2010-12-13 Thread Ismail Donmez
Ismail Donmez added the comment: Patch works fine on Mac OSX 10.6.5 -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsub

[issue10453] Add -h/--help option to compileall

2010-12-13 Thread R. David Murray
Changes by R. David Murray : Added file: http://bugs.python.org/file20031/compileall_cli_revisited.patch ___ Python tracker ___ ___ Python-bug

[issue10453] Add -h/--help option to compileall

2010-12-13 Thread R. David Murray
Changes by R. David Murray : Removed file: http://bugs.python.org/file20030/compileall_cli_revisited.patch ___ Python tracker ___ ___ Python-b

[issue10453] Add -h/--help option to compileall

2010-12-13 Thread R. David Murray
Changes by R. David Murray : -- nosy: +cartman ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue10691] make testall no longer working on Darwin

2010-12-13 Thread R. David Murray
R. David Murray added the comment: I'm not sure why you would be seeing a test failure on OSX when we aren't seeing it on other platforms, but the cause of the bug is known. It should be fixed by the last patch attached to issue 10453. If you could test that patch it would be great, but ple

[issue10453] Add -h/--help option to compileall

2010-12-13 Thread R. David Murray
Changes by R. David Murray : Added file: http://bugs.python.org/file20030/compileall_cli_revisited.patch ___ Python tracker ___ ___ Python-bug

[issue10453] Add -h/--help option to compileall

2010-12-13 Thread R. David Murray
Changes by R. David Murray : Removed file: http://bugs.python.org/file20029/compileall_cli_revisited.patch ___ Python tracker ___ ___ Python-b

[issue10453] Add -h/--help option to compileall

2010-12-13 Thread R. David Murray
Changes by R. David Murray : Removed file: http://bugs.python.org/file19989/compileall_cli_revisited.patch ___ Python tracker ___ ___ Python-b

[issue10453] Add -h/--help option to compileall

2010-12-13 Thread R. David Murray
R. David Murray added the comment: Updating patch because the assertTestRegexMatches name was updated. -- Added file: http://bugs.python.org/file20029/compileall_cli_revisited.patch ___ Python tracker

[issue469972] xmlrpclib won't marshal new types

2010-12-13 Thread Jari Tenhunen
Jari Tenhunen added the comment: >> FWIW, (simple)json module serializes subclasses of builtin types >> just as expected. > Does that round trip properly? For instance, if you serialize an > instance of a list subclass does it unserialize as a list instance > or as the subclass? You get a list

[issue469972] xmlrpclib won't marshal new types

2010-12-13 Thread Skip Montanaro
Skip Montanaro added the comment: > FWIW, (simple)json module serializes subclasses of builtin types > just as expected. Does that round trip properly? For instance, if you serialize an instance of a list subclass does it unserialize as a list instance or as the subclass? Perhaps JSON has som

[issue10693] error in documentation of distutils.archive_util.make_zipfile

2010-12-13 Thread Eli Bendersky
New submission from Eli Bendersky : The documentation of: distutils.archive_util.make_zipfile(base_name, base_dir[, verbose=0, dry_run=0]) Says: Create a zip file from all files in and under base_dir. The output zip file will be named base_dir + .zip. This isn't correct, as the name of

[issue10692] imap lib server compabilities

2010-12-13 Thread Yevgeniy
New submission from Yevgeniy : When i trying to connect to courier-imap server i got error: "server not IMAP4 compliant" But as i see in the debug information and server responses there is error in the source code of library. imaplib.py version: 2.58 courier-imap server version: 0.91-ubuntu1 os

[issue469972] xmlrpclib won't marshal new types

2010-12-13 Thread Jari Tenhunen
Jari Tenhunen added the comment: How about revisiting this one? Although this behavior/limitation is documented, it is quite surprising to the user. FWIW, (simple)json module serializes subclasses of builtin types just as expected. -- nosy: +jait _

[issue9232] Allow trailing comma in any function argument list.

2010-12-13 Thread Jan Kaliszewski
Changes by Jan Kaliszewski : -- nosy: +zuo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.or

[issue7213] subprocess leaks open file descriptors between Popen instances causing hangs

2010-12-13 Thread Giovanni Bajo
Giovanni Bajo added the comment: Hi Gregory, will you backport Mirko's patches to subprocess32? The last thing left in this bug is my proposal to change the default of close_fds to True to Windows too, but at the same time detect whether this is possible or not (depending on the pipe redirec

[issue10690] IDLE Crash when running/saving Module

2010-12-13 Thread Ned Deily
Ned Deily added the comment: Without more specific details on exactly how to reproduce the problem, I assume you are seeing something like the problem reported in Issue9783. There are several reported problems with IDLEs that are linked with the Apple-supplied Tcl/Tk 8.5 in OS X 10.6. That

[issue10689] _scproxy extension is NOT build

2010-12-13 Thread Ned Deily
Ned Deily added the comment: Building Python on OS X is currently only tested and supported using the gcc provided by Apple's Xcode Developer Tools (either gcc-4.0 for building on OS X 10.4 and 10.5 and gcc-4.2 or -4.0 for building on 10.6, depending on deployment target). Also judging from

[issue9234] argparse: aliases for positional arguments (subparsers)

2010-12-13 Thread Éric Araujo
Éric Araujo added the comment: Patch looks good. Can you add tests for the new functionality? (This is listed in the link I gave you :) Note: this code if 'aliases' in kwargs: aliases = kwargs.pop('aliases') else: aliases = () can be shortened to aliases = kwar

  1   2   >