[issue6011] python doesn't build if prefix contains non-ascii characters

2010-11-19 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: I will try tomorrow, thanks for reminding me. That was a fresh clone. I did. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6011

[issue10461] Use with statement throughout the docs

2010-11-20 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: with also replaces open-try-do stuff-finally-close, the correct idiom for ensuring file handles are always closes in all VMs. I don’t think the doc style guide is the right place, since this is a code issue. with is advertised in http

[issue10450] Fix markup in Misc/NEWS

2010-11-20 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Fixed indeed. Dave: Please open a feature request, this is a good idea. -- resolution: - fixed stage: needs patch - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org

[issue10461] Use with statement throughout the docs

2010-11-20 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Certainly. Here is my secret grep: $ cd py3k/Doc $ grep -n --color=auto -d skip -I --exclude-dir .svn --exclude-dir .hg -R open\(.*\).read *.rst c-api distutils documenting extending faq howto library reference tutorial using List without

[issue809163] Can't add files with spaces

2010-11-20 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Thanks for the patch John. Instead of low-level use of TESTFN, you can use distutils.tests.support.TempdirManager to create a temporary directory and write files to it in a few lines. -- assignee: tarek - eric.araujo stage: needs patch

[issue10463] Wrong return type for xml.etree.ElementTree.parse()

2010-11-20 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- resolution: works for me - invalid stage: - committed/rejected ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10463

[issue10351] Add autocompletion for keys in dictionaries

2010-11-20 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: I will review your patch later today. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10351

[issue10424] better error message from argparse when positionals missing

2010-11-20 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- nosy: +eric.araujo ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10424 ___ ___ Python-bugs-list

[issue10461] Use with statement throughout the docs

2010-11-20 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Yes, that’s it. Please don’t change whitespace in your patches. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10461

[issue665194] datetime-RFC2822 roundtripping

2010-11-20 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- nosy: +eric.araujo ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue665194 ___ ___ Python-bugs-list

[issue10461] Use with statement throughout the docs

2010-11-20 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Eli, SilentGhost: Please open other bug reports for doc errors like the struct one in stdlib2 or the r/rb one. SilentGhost: with statement used with open *is* about file reading :) Raymond: I agree about try/finally. I agree with Alexander

[issue10367] python setup.py sdist upload --show-response can fail with UnboundLocalError: local variable 'result' referenced before assignment

2010-11-20 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Thank you for the fix Priscila. Can you submit it as a diff file? (guidelines on http://www.python.org/dev/patches/) Tarek: I wonder if we should backport pydoc_server from d2 to test behavior bugs like this one

[issue9199] distutils upload command crashes when displaying server response

2010-11-20 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Thanks for correcting me! -- resolution: - fixed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9199

[issue3709] BaseHTTPRequestHandler innefficient when sending HTTP header

2010-11-20 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- versions: -Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue3709 ___ ___ Python-bugs-list

[issue10407] missing errno import in distutils/dir_util.py

2010-11-20 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Fixed in r86601 and r86605 (py3k), r86606 (3.1), r86609 (2.7). Thanks! -- resolution: - fixed stage: - committed/rejected status: pending - closed ___ Python tracker rep...@bugs.python.org http

[issue1508475] transparent gzip compression in urllib

2010-11-20 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- components: -Extension Modules nosy: +eric.araujo -BreamoreBoy title: transparent gzip compression in liburl2 - transparent gzip compression in urllib ___ Python tracker rep...@bugs.python.org http

[issue10470] python -m unittest ought to default to discovery

2010-11-20 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: The existing discover subcommand would enter the deprecation process, right? -- nosy: +eric.araujo ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10470

[issue10470] python -m unittest ought to default to discovery

2010-11-20 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- keywords: +easy stage: - needs patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10470

[issue7325] tempfile.mkdtemp() does not return absolute pathname when relative dir is specified

2010-11-20 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Looks good to me, with one exception: if temp_dir_abspath.startswith('./'): Wouldn’t this be better: if not _os.path.isabs(temp_dir_abspath) (P.S. file is not a builtin anymore in 3.x, it’s used for example as an argument to the print

[issue10220] Make generator state easier to introspect

2010-11-20 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Looks good, modulo two nitpicks: 1) Using literals for constants would avoid a lookup and call of range. 2) Please remove four leading spaces in your docstring. -- nosy: +eric.araujo ___ Python

[issue10220] Make generator state easier to introspect

2010-11-20 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Nice. Now you can sit back, relax and wait for Nick to commit the patch or make further comments. -- stage: needs patch - patch review ___ Python tracker rep...@bugs.python.org http://bugs.python.org

[issue4246] execution model - clear and complete example in documentation

2010-11-20 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- nosy: +d...@python -georg.brandl ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4246 ___ ___ Python

[issue809163] Can't add files with spaces

2010-11-20 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: TempdirManager hasn’t caused buildbots failures so far, so there is no need to change it. You can use it, it’s convenient and works :) -- ___ Python tracker rep...@bugs.python.org http

[issue6007] distutils tricks you into thinking you can build extensions with mingw

2010-11-20 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: distutils docs only get changes that fix a bug (e.g. an example that does not work), not improvements or reorganization. Your patch is in a gray area; I think we should not accept it in distutils but re-target it at distutils2. Even if you

[issue9746] All sequence types support .index and .count

2010-11-20 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Doc patch looks good. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9746 ___ ___ Python-bugs

[issue1043134] mimetypes.guess_extension('text/plain') == '.ksh' ???

2010-11-20 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- nosy: +eric.araujo ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1043134 ___ ___ Python-bugs-list

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

2010-11-20 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Invocation without arguments does not work. I have a fix, I’ll add a test and commit. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10453

[issue10292] tarinfo should use relative symlinks

2010-11-20 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- nosy: +eric.araujo ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10292 ___ ___ Python-bugs-list

[issue6011] python doesn't build if prefix contains non-ascii characters

2010-11-20 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Regarding your fix to copy_script, I will have to ask python-dev about PEP 291 in py3k (i.e., should 3.2 code really be compatible with 2.3?). -- ___ Python tracker rep...@bugs.python.org http

[issue8647] PyUnicode_GetMax is undocumented

2010-11-20 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- stage: needs patch - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8647

[issue9746] All sequence types support .index and .count

2010-11-20 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Patch committed in r86625 (py3k), r86627 (3.1) and r86627 (2.7). Regarding API conformance, I ran this simple test, courtesy of Daniel in msg109784: for cls in str, bytes, bytearray, list, tuple, range: ... print(cls, [method for method

[issue6799] mimetypes does not give canonical extension for guess_extension with text/plain

2010-11-20 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- resolution: - duplicate stage: needs patch - committed/rejected status: open - closed superseder: - mimetypes.guess_extension('text/plain') == '.ksh' ??? title: mimetypes does not give cannonical extension for guess_extension with text

[issue9435] test_distutils fails without zlib

2010-11-20 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: This can be kept open as a separate report, since it was caused by the Big Distutils Revert in 3.2. We’ve already discussed how to fix that in private email and IRC thanks to Ezio. Because of compat requirements, we’ll probably have to use

[issue10367] python setup.py sdist upload --show-response can fail with UnboundLocalError: local variable 'result' referenced before assignment

2010-11-20 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- superseder: distutils upload command crashes when displaying server response - ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10367

[issue5800] make wsgiref.headers.Headers accept empty constructor

2010-11-20 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: FTR, note that “svn diff file1 file2...” will give you one file for many edits. It’s easier to review and apply. Regarding the change, I don’t know if wsgiref 3.2 has to be compatible with Python 2.1, which would exclude using the ternary

[issue969718] BASECFLAGS are not passed to module build line

2010-11-20 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- assignee: - tarek components: +Distutils2 nosy: +eric.araujo versions: +3rd party, Python 3.2 -Python 2.6, Python 3.0 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue969718

[issue10477] AttributeError: 'NoneType' object has no attribute 'name' (bonenode.name)

2010-11-20 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: This is not a bug in Python but in the third-party pyffi project. Please report it to them. -- nosy: +eric.araujo resolution: - invalid stage: - committed/rejected status: open - closed ___ Python

[issue9312] Fix usage of :option: markup in stdlib ReST docs

2010-11-20 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Thanks for the review. I agree and committed changes in r86632. The problem with :option:`-c` is probably that Sphinx wants to find a “.. cmdoption:: -c” joined with the latest program directive it has seen, and thus can’t find the -c defined

[issue10445] _ast py3k : add lineno back to args node

2010-11-20 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- nosy: +benjamin.peterson ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10445 ___ ___ Python-bugs-list

[issue10406] IDLE 2.7 on OS X does not enable Rstrip extension by default

2010-11-20 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: If the release manager agrees, I think the change is okay. -- nosy: +benjamin.peterson, eric.araujo ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10406

[issue10405] IDLE breakpoint facility undocumented

2010-11-20 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Can you propose a patch, as a diff or even plain English in a reply? -- nosy: +eric.araujo ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10405

[issue10404] IDLE on OS X popup menus do not work: cannot set/clear breakpoints

2010-11-20 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Platform consistency is a worthy criterion for changes, but I suspect such a behavior change can’t make it into stable branches. -- nosy: +benjamin.peterson, eric.araujo ___ Python tracker rep

[issue8754] ImportError: quote bad module name in message

2010-11-20 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Just for fun, I tried using my tiny understanding of C to write a patch. I am attaching my current result, which passes the test suite except for test_unittest: FAIL: test_loadTestsFromName__unknown_module_name

[issue10370] py3 readlines() reports wrong offset for UnicodeDecodeError

2010-11-20 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- nosy: +eric.araujo ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10370 ___ ___ Python-bugs-list

[issue10369] tarfile requires an actual file on disc; a file-like object is insufficient

2010-11-20 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- nosy: +eric.araujo ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10369 ___ ___ Python-bugs-list

[issue10362] AttributeError: addinfourl instance has no attribute 'tell'

2010-11-20 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: 2.6 only gets security fixes. Can you reproduce the bug with current versions? -- nosy: +eric.araujo versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6 ___ Python tracker rep...@bugs.python.org

[issue809163] Can't add files with spaces

2010-11-20 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Looks good. You’ll want to use assertEqual here: self.assertTrue(1, len(file_list.files)) Do you want to patch filelist.py now? -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org

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

2010-11-20 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: One buildbot also shows a bug in quiet or test_quiet: Traceback (most recent call last): File D:\cygwin\home\db3l\buildarea\3.x.bolen-windows\build\lib\test\test_compileall.py, line 227, in test_quiet self.assertTrue(len(noise) len(quiet

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

2010-11-20 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: I hadn’t seen your patch Michele. I find mine more readable: http://pastealacon.com/26257 . That was just the easy part though; do you want to write a test? -- ___ Python tracker rep

[issue9199] distutils upload command crashes when displaying server response

2010-11-20 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Jesús: There are a lot of literal \n in the current code, so I will assume that they work for now and change them only if there is a bug report. Thanks for noticing nonetheless. -- ___ Python

[issue6007] distutils tricks you into thinking you can build extensions with mingw

2010-11-20 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Thanks for the reply Martin. Tarek has pronounced in favor of this change, so I will commit it tomorrow. -- assignee: tarek - eric.araujo components: +Distutils2 resolution: - accepted status: open - pending versions: +3rd party

[issue10404] IDLE on OS X popup menus do not work: cannot set/clear breakpoints

2010-11-21 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Apologies, I had misread your message: I thought the keybinding was wrong but working. Your fix should be committed. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10404

[issue10362] AttributeError: addinfourl instance has no attribute 'tell'

2010-11-21 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Thanks. Do you want to work on a patch? We need to had a test to reproduce the error and then fix the code. -- nosy: +orsenthil stage: - needs patch type: - behavior versions: +Python 3.1, Python 3.2 -Python 2.6

[issue10362] AttributeError: addinfourl instance has no attribute 'tell'

2010-11-21 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: 2.5 and 2.6 don’t get bug fixes anymore, only security fixes. If you want to try to fix the code, there are some guidelines at http://www.python.org/dev/patches/ -- ___ Python tracker rep

[issue8890] Use tempfile instead of /tmp in examples

2010-11-21 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- assignee: - d...@python components: +Documentation -Demos and Tools ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8890

[issue1475523] gettext breaks on plural-forms header

2010-11-21 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- nosy: -BreamoreBoy resolution: accepted - ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1475523

[issue9509] argparse FileType raises ugly exception for missing file

2010-11-21 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Looks good to me too. Steven, does this require a test? -- nosy: +eric.araujo stage: - patch review ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9509

[issue8561] Install .exes generated with distutils to not do a CRC check

2010-11-21 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: No reply, closing. -- resolution: - wont fix stage: - committed/rejected status: pending - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8561

[issue1560032] confusing error msg from random.randint

2010-11-21 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: This is related to the more general issue of how to report a wrong number of arguments in a method call; I don’t remember if it was a python-dev discussion, a python-ideas one or a bug report. random is not the only module where instance

[issue940286] pydoc.Helper.help() ignores input/output init parameters

2010-11-21 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Thanks for the patch. I commented there. -- nosy: +eric.araujo ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue940286

[issue10461] Use with statement throughout the docs

2010-11-21 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: Removed file: http://bugs.python.org/file19696/unnamed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10461

[issue9877] Expose sysconfig._get_makefile_filename() in public API

2010-11-21 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: I noticed in the output of pydoc that get_makefile_filename does not have a docstring. I added one in my local copy (“Return the path of the Makefile.”) and also removed “s” in verbs in other docstrings to comply with PEP 257. Shall I commit

[issue9338] argparse optionals with nargs='+' can't be followed by positionals

2010-11-21 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Patch looks good, thanks! Does it integrate Catherine’s tests? -- components: +Library (Lib) stage: needs patch - patch review ___ Python tracker rep...@bugs.python.org http://bugs.python.org

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

2010-11-21 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Patch for test_quiet looks good, thanks. Do you want to write test_noargs? -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10453

[issue809163] Can't add files with spaces

2010-11-21 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: assertEquals is deprecated, I’ll change to assertEqual. What filelist.py patch are you referring to? I've tested this on py3k with no changes to filelist.py. The goal of a test is to show an error so that it can be fixed. In this case

[issue9509] argparse FileType raises ugly exception for missing file

2010-11-21 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: I don’t know enough of the test_argparse magic to assess the new test, but Stephan, the author and maintainer of argparse, will certainly comment when he gets some time. Thanks for the patch

[issue9399] Provide a 'print' action for argparse

2010-11-21 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: sys.std* should not be used as default values in a function definition, because they may be rebound to other objects. The usual idiom is to have None as default value and check it at call time. The patch also needs tests and docs. (FTR

[issue10366] Remove unneeded '(object)' from 3.x class examples

2010-11-21 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: I will commit the patch this week unless someone opposes to it. We still need a doc change as described in Terry’s original message. -- assignee: d...@python - eric.araujo resolution: - accepted stage: needs patch - patch review status

[issue7325] tempfile.mkdtemp() does not return absolute pathname when relative dir is specified

2010-11-21 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: os.path.abspath actually checks for isabs first, so I think you can leave the test out and always call abspath. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7325

[issue8525] Small enhancement to help()

2010-11-21 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Thank you. I uploaded your patch to Rietveld and reviewed it: http://codereview.appspot.com/3169042/ -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8525

[issue10366] Remove unneeded '(object)' from 3.x class examples

2010-11-21 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: “I also think the doc for 'class' should say that the default inheritance is from the base class *object*” -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10366

[issue10494] Demo/comparisons/regextest.py needs some usage information.

2010-11-21 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Beware of UUOC: http://en.wikipedia.org/wiki/Cat_%28Unix%29#Useless_use_of_cat -- nosy: +eric.araujo ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10494

[issue9831] test_distutils should honor PYTHONDONTWRITEBYTECODE

2010-11-21 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- resolution: accepted - title: test_distutils fails on MacOSX 10.6 - test_distutils should honor PYTHONDONTWRITEBYTECODE ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9831

[issue9877] Expose sysconfig._get_makefile_filename() in public API

2010-11-21 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Thanks, done as r86662 and [fbcddbb92b14]. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9877

[issue10461] Use with statement throughout the docs

2010-11-21 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Raymond: I made a single diff for easier review. I’m not 100% sure I should change 'r' to 'rb' in logging: It’s unrelated to with, and the rest of the file has not been checked for similar errors. I prefer to do commits that don’t mix things

[issue5088] optparse: inconsistent default value for append actions

2010-11-21 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- assignee: d...@python - eric.araujo status: pending - open ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5088

[issue10497] Incorrect use of gettext in argparse

2010-11-21 Thread Éric Araujo
New submission from Éric Araujo mer...@netwok.org: I found two calls to gettext that are incorrect. See attached patch. -- components: Library (Lib) files: gettext-argparse.diff keywords: patch messages: 122068 nosy: bethard, eric.araujo priority: normal severity: normal stage: patch

[issue10200] Documentation: link use?

2010-11-21 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: Removed file: http://bugs.python.org/file19375/unnamed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10200

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

2010-11-21 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: test_quiet hopefully fixed in r86668. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10453

[issue10366] Remove unneeded '(object)' from 3.x class examples

2010-11-21 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: The patch actually already contained a doc change addressing Terry’s second request, thank you Xuanji Li. I reverted the changes to howto as per Raymond’s comment, made some other slight editions (like removing trailing whitespace

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

2010-11-21 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Not fixed: http://www.python.org/dev/buildbot/all/builders/AMD64%20Windows%20Server%202008%203.x/builds/54/steps/test/logs/stdio -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org

[issue10299] Add index with links section for built-in functions

2010-11-21 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: I like this version. HTML and LaTex build without warning; all-pdf takes forever and spits out a metric ton of messages, so I haven’t checked its result. The markup trickery is unfortunate, though, I’d like a pronouncement from Georg about

[issue7283] test_site failure when .local/lib/pythonX.Y/site-packages hasn't been created yet

2010-11-21 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Is this still relevant? -- nosy: +eric.araujo ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7283

[issue9771] add an optional default argument to tokenize.detect_encoding

2010-11-21 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- nosy: +haypo ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9771 ___ ___ Python-bugs-list mailing list

[issue8416] python 2.6.5 documentation can't search

2010-11-21 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- assignee: d...@python - georg.brandl ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8416

[issue9264] trace.py documentation is incomplete

2010-11-21 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- nosy: +d...@python -georg.brandl ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9264 ___ ___ Python

[issue8525] Small enhancement to help()

2010-11-22 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: New features can only go into 3.2, so you have to test with an updated checkout of the Subversion branch named py3k. See the link I have in a previous message. (P.S. Would you be so kind as to edit quoted text out of your replies? It’s

[issue940286] pydoc.Helper.help() ignores input/output init parameters

2010-11-22 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- stage: unit test needed - patch review versions: +Python 2.7, Python 3.1 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue940286

[issue8890] Use tempfile instead of /tmp in examples

2010-11-22 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Whatsnew documents are not edited after the corresponding release is done. Using either /home/user or tempfile depending on the example seems good to me. -- stage: needs patch - patch review

[issue10351] Add autocompletion for keys in dictionaries

2010-11-22 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Review time! +elif [ in text: +self.matches = self.dict_key_matches(text) Does this complete only dicts? What about other mappings? What about other sequences implementing __getitem__? One of the function name

[issue9095] patchcheck should handle extraneous whitespace in .rst files

2010-11-22 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: I tried to use “make patchcheck” after edits to reST files and it hung. Do you have the same behavior? I suspect reindent-rst is the culprit. I’m wondering about the reindenting; other checks in patchcheck don’t edit files, they just print

[issue10505] test_compileall: failure on Windows

2010-11-22 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Can you post on #10453? Thanks in advance. -- nosy: +eric.araujo resolution: - duplicate stage: patch review - committed/rejected status: open - closed superseder: - Add -h/--help option to compileall

[issue1676121] Problem linking to readline lib on x86(64) Solaris

2010-11-22 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- superseder: documentation for new SSL module - readline configuration for shared libs w/o curses dependencies ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1676121

[issue10510] distutils.command.upload/register HTTP message headers: bad line termination

2010-11-23 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Thank you for the report. This is how I understand the part of the spec you quoted: Strictly valid HTTP uses CRLF, but servers and clients should be liberal in what they accept and deal with LF too. Senthil, do you agree

[issue10500] Palevo.DZ worm msix86 installer 3.x installer

2010-11-23 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- nosy: +loewis versions: -Python 3.3 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10500

[issue2001] Pydoc interactive browsing enhancement

2010-11-23 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: I am reviewing this and making some edits to the patch. Will post this week. -- nosy: +giampaolo.rodola ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2001

[issue10518] Bring back callable()

2010-11-24 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Does the plan include deprecating collections.Callable? -- nosy: +eric.araujo ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10518

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

2010-11-24 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- nosy: +eric.araujo ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10516 ___ ___ Python-bugs-list

[issue10520] Build with --enable-shared fails

2010-11-24 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- nosy: +benjamin.peterson, eric.araujo ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10520

[issue5800] make wsgiref.headers.Headers accept empty constructor

2010-11-25 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: LGTM. -- assignee: - pje ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5800 ___ ___ Python-bugs

  1   2   3   4   5   6   7   8   9   10   >