[issue5529] Backport sys module docs involving import to 2.7

2009-03-22 Thread Georg Brandl
Georg Brandl added the comment: Oh, it's nice to have something to do at PyCon. :) -- assignee: -> georg.brandl ___ Python tracker <http://bugs.python.or

[issue5535] json custom encoder not fully functionnal

2009-03-22 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: -> bob.ippolito nosy: +bob.ippolito ___ Python tracker <http://bugs.python.org/issue5535> ___ ___ Python-bugs-list mai

[issue5583] Optional extensions in setup.py

2009-03-27 Thread Georg Brandl
New submission from Georg Brandl : Adds a new kwarg to the Extension constructor that does what Python's own /setup.py does to ignore build failure in an extension with a warning. I'm not sure if that's everything that's needed, but it seems to work in a simple test case.

[issue5324] __subclasses__ undocumented

2009-03-28 Thread Georg Brandl
Georg Brandl added the comment: Documented in r70648, r70649 (3k). -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue5337] Scanner class in re module undocumented

2009-03-28 Thread Georg Brandl
Georg Brandl added the comment: The class is commented as being "experimental", and the interface probably could use improvement (it's a bit awkward to subclass Scanner), but since it's been around for so long, I guess enough people will be using it that we have to keep it t

[issue2953] _zip_directory_cache untested and undocumented

2009-03-29 Thread Georg Brandl
Georg Brandl added the comment: I can't find a reference to _zip_directory_cache in distutils. Do you mean setuptools? -- ___ Python tracker <http://bugs.python.org/i

[issue2966] pydoc doesnt show 'from module import identifier' in the docs

2009-03-29 Thread Georg Brandl
Georg Brandl added the comment: I agree. -- resolution: -> wont fix status: open -> closed ___ Python tracker <http://bugs.python.org/issue2966> ___ ___

[issue2986] difflib.SequenceMatcher not matching long sequences

2009-03-29 Thread Georg Brandl
Georg Brandl added the comment: Tim, I think you've had some enlightening comments about difflib issues in the past. -- assignee: -> tim_one nosy: +georg.brandl, tim_one ___ Python tracker <http://bugs.python.or

[issue5199] warns vars() assignment as well as locals()

2009-03-30 Thread Georg Brandl
Georg Brandl added the comment: Fixed in r70765. -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/issue5199> ___ __

[issue5039] Adjust reference-counting note

2009-03-30 Thread Georg Brandl
Georg Brandl added the comment: Committed as r70773, thanks for the patch! -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue5039] Adjust reference-counting note

2009-03-31 Thread Georg Brandl
Georg Brandl added the comment: It's all right, I spotted that and added the "C" in the commit. -- ___ Python tracker <http://bugs.python.org/issue5039> ___ _

[issue5621] Add description of special case to "Assignment statements" section

2009-03-31 Thread Georg Brandl
Georg Brandl added the comment: I'm not sure it belongs there, since normal assignments do not say *anything* about the RHS. -- ___ Python tracker <http://bugs.python.org/i

[issue5519] Deletion of some statements in re documentation

2009-03-31 Thread Georg Brandl
Georg Brandl added the comment: Fixed in r70824. -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/issue5519> ___ __

[issue5566] Minor error in document of PyLong_AsSsize_t

2009-03-31 Thread Georg Brandl
Georg Brandl added the comment: Fixed first issue in r70825. Fixed second issue in r70827. -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue5581] abc.abstractproperty() docs list fget as required; fget is not required by abc.abstractproperty()

2009-03-31 Thread Georg Brandl
Georg Brandl added the comment: Fixed in r70828, thanks! -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue5548] In the tutorial, PyMODINIT_FUNC is shown as having a return type of void rather than PyObject *

2009-03-31 Thread Georg Brandl
Georg Brandl added the comment: Thanks, fixed in r70829. -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue5540] "file objects" in python 3 tutorial

2009-03-31 Thread Georg Brandl
Georg Brandl added the comment: I found nothing in that document that refers to file objects as seen in Python 2, e.g. the "file" type. I'd still refer to all of Python 3's IO objects as "file objects". -- resolution: ->

[issue5529] Backport sys module docs involving import to 2.7

2009-03-31 Thread Georg Brandl
Georg Brandl added the comment: Done in r70830. -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/issue5529> ___ __

[issue5621] Add description of special case to "Assignment statements" section

2009-03-31 Thread Georg Brandl
Georg Brandl added the comment: Yes, it says that getattr() is used in the section about augassign; but there the note you refer to is already present. -- resolution: -> works for me status: open -> pending ___ Python tracker

[issue1503789] Cannot write source code in UTF16

2009-03-31 Thread Georg Brandl
Georg Brandl added the comment: Why am I assigned this issue? -- assignee: georg.brandl -> ___ Python tracker <http://bugs.python.org/issue1503789> ___ ___ Py

[issue1501979] syntax errors on continuation lines

2009-03-31 Thread Georg Brandl
Georg Brandl added the comment: I'm not sure if this is necessary; you could argue that the syntax error really is on the last line, because there the parenthesis is missing. -- ___ Python tracker <http://bugs.python.org/issu

[issue1386675] _winreg specifies EnvironmentError instead of WindowsError

2009-03-31 Thread Georg Brandl
Georg Brandl added the comment: Re-fixed in r70832. -- assignee: fdrake -> georg.brandl nosy: +georg.brandl resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue5522] HTTPRedirectHandler documentation is wrong

2009-03-31 Thread Georg Brandl
Georg Brandl added the comment: This seems to be fixed in the development docs. -- resolution: -> out of date status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue5417] Reference to missing(?) function in Extending & Embedding Document

2009-03-31 Thread Georg Brandl
Georg Brandl added the comment: The function is there, but not documented, so the examples are valid. I now changed them to refer to PyObject_Call[Object] which are documented in r70836. -- resolution: -> fixed status: open -> closed ___

[issue992207] exec statement balks at CR/LF

2009-03-31 Thread Georg Brandl
Georg Brandl added the comment: Documented in r70838, r70840. -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/is

[issue970783] PyObject_GenericGetAttr is undocumented

2009-03-31 Thread Georg Brandl
Georg Brandl added the comment: Documented in r70842.c -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/is

[issue837577] cryptic os.spawnvpe() return code

2009-03-31 Thread Georg Brandl
Georg Brandl added the comment: Documented in r70851. -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/is

[issue5245] PyRun_SimpleStringFlags() documentation

2009-03-31 Thread Georg Brandl
Georg Brandl added the comment: Documented in r70855. -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue5227] Py_Main() does not return on sys.exit()

2009-03-31 Thread Georg Brandl
Georg Brandl added the comment: Documented in r70857. -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue5241] Missing flags in the Regex howto

2009-03-31 Thread Georg Brandl
Georg Brandl added the comment: Fixed in r70859, r70861. -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue1717] Get rid of more references to __cmp__

2009-03-31 Thread Georg Brandl
Georg Brandl added the comment: Documentation updated in r70863. -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue4882] Behavior of backreferences to named groups in regular expressions unclear

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

[issue1096310] sys.__stdout__ doco isn't discouraging enough

2009-03-31 Thread Georg Brandl
Georg Brandl added the comment: Amended documentation in r70867. -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/iss

[issue5190] optparse doex not export make_option

2009-03-31 Thread Georg Brandl
Georg Brandl added the comment: As commented in optparse.py, make_option is the preferred way to create options, so I've added it to __all__ in r70868. -- resolution: -> fixed status: open -> closed ___ Python tracker <http://b

[issue4411] __mro__ documentation

2009-03-31 Thread Georg Brandl
Georg Brandl added the comment: Documented in r70870. -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue5618] PyMemberDef type T_UBYTE incorrectly documtented

2009-03-31 Thread Georg Brandl
Georg Brandl added the comment: Fixed in r70871. -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/issue5618> ___ __

[issue1681974] mkdtemp fails on Windows if username has non-ASCII character

2009-03-31 Thread Georg Brandl
Georg Brandl added the comment: Why are you using a unicode string as your temp directory prefix? Does it raise something different if you don't? -- assignee: -> loewis nosy: +loewis ___ Python tracker <http://bugs.python.org/i

[issue1243678] httplib gzip support

2009-03-31 Thread Georg Brandl
Georg Brandl added the comment: Sounds reasonable. -- resolution: -> duplicate status: open -> closed superseder: -> [gzip] Performance for small reads and fix seek problem ___ Python tracker <http://bugs.python.org/

[issue1590068] Error piping output between scripts on Windows

2009-03-31 Thread Georg Brandl
Georg Brandl added the comment: Duplicate of #1675026. -- nosy: +georg.brandl resolution: -> duplicate status: open -> closed superseder: -> Redirect cause invalid descriptor error ___ Python tracker <http://bugs.python.org/

[issue5208] urllib2.build_opener(

2009-03-31 Thread Georg Brandl
Georg Brandl added the comment: Closing as invalid. -- resolution: -> invalid status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue2266] Missing documentation about old/new-style classes

2009-03-31 Thread Georg Brandl
Georg Brandl added the comment: The new docs already have glossary entries that point to the datamodel doc. -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue1714773] python throws an error when unpacking bz2 file

2009-03-31 Thread Georg Brandl
Georg Brandl added the comment: This was apparently fixed sometime in trunk. -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/iss

[issue1674032] Make threading.Event().wait(timeout=3) return isSet

2009-03-31 Thread Georg Brandl
Georg Brandl added the comment: Added a pony test and committed in r70883. -- assignee: tim_one -> georg.brandl resolution: -> accepted status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue1530012] Literal strings use BS as octal escape character

2009-03-31 Thread Georg Brandl
Georg Brandl added the comment: Swapped the sections in r70893. -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/iss

[issue5603] Garbled sentence in documentation of urllib.request.urlopen

2009-03-31 Thread Georg Brandl
Georg Brandl added the comment: Already fixed in dev docs. -- resolution: -> out of date status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue5602] Slight punctuation problem in documentation of urllib.request.urlopen

2009-03-31 Thread Georg Brandl
Georg Brandl added the comment: Actually, that style is fine as well and even indicates a bit better that you don't have to give data if you give timeout. We'll likely try to get the style of writing optional parameters more consistent in the future. -- resolution: ->

[issue5563] Document bdist_msi

2009-03-31 Thread Georg Brandl
Georg Brandl added the comment: I'll wait for a patch from you, Steven. -- ___ Python tracker <http://bugs.python.org/issue5563> ___ ___ Python-bugs-list m

[issue5601] webbrowser doesn't just open browsers

2009-03-31 Thread Georg Brandl
Georg Brandl added the comment: I'm inclined not to document that. webbrowser is meant for URLs, the behavior if you call it with file names is undefined. -- resolution: -> wont fix status: open -> pending ___ Python tra

[issue5337] Scanner class in re module undocumented

2009-03-31 Thread Georg Brandl
Georg Brandl added the comment: OK, so we'll wait for that. -- dependencies: +Regexp 2.7 (modifications to current re 2.2.2) ___ Python tracker <http://bugs.python.org/i

[issue5598] "paths" argument missing in DocFileSuite documentation

2009-03-31 Thread Georg Brandl
Georg Brandl added the comment: Fixed in r70896. -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/issue5598> ___ __

[issue2953] _zip_directory_cache untested and undocumented

2009-03-31 Thread Georg Brandl
Georg Brandl added the comment: That's fortunate, because I can just reassign this to him :) -- assignee: georg.brandl -> brett.cannon nosy: +brett.cannon ___ Python tracker <http://bugs.python.or

[issue1675026] Redirect cause invalid descriptor error

2009-03-31 Thread Georg Brandl
Georg Brandl added the comment: Documented in README in r70902. -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/iss

[issue1676135] Remove trailing slash from --prefix

2009-03-31 Thread Georg Brandl
Georg Brandl added the comment: Changed a bit (seems that backslash before the $ in the regex isn't necessary) and checked in in r70903. -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.or

[issue5563] Document bdist_msi

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

[issue5633] fix for timeit when the statment is a string and the setup is not (and tests)

2009-03-31 Thread Georg Brandl
Georg Brandl added the comment: I'll look at it. -- ___ Python tracker <http://bugs.python.org/issue5633> ___ ___ Python-bugs-list mailing list Unsubsc

[issue1651995] sgmllib _convert_ref UnicodeDecodeError exception, new in 2.5

2009-03-31 Thread Georg Brandl
Georg Brandl added the comment: Committed in r70906. -- resolution: -> accepted status: open -> closed ___ Python tracker <http://bugs.python.org/iss

[issue3427] urllib documentation: urlopen().info() return type

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

[issue5617] Unicode printing in gdb post-mortem sessions

2009-03-31 Thread Georg Brandl
Georg Brandl added the comment: Added in r70912. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue5018] Overly general claim about sequence unpacking in tutorial

2009-03-31 Thread Georg Brandl
Georg Brandl added the comment: I've just removed the paragraph about the asymmetry in r70915. -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python

[issue5635] test_sys reference counting fails while tracing

2009-03-31 Thread Georg Brandl
Georg Brandl added the comment: Committed in r70933. Thanks! -- nosy: +georg.brandl resolution: -> accepted status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue5601] webbrowser doesn't just open browsers

2009-03-31 Thread Georg Brandl
Georg Brandl added the comment: That would be nice. -- ___ Python tracker <http://bugs.python.org/issue5601> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue5624] Py3K branch import _winreg instead of winreg

2009-03-31 Thread Georg Brandl
Georg Brandl added the comment: Committed in r70943. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue5627] PyDict_SetItemString() fails when the second argument is null

2009-03-31 Thread Georg Brandl
Georg Brandl added the comment: I am not sure why you consider this a bug. You should certainly not pass NULL pointers around where the docs do not explicitly allow this. -- nosy: +georg.brandl resolution: -> wont fix status: open -> p

[issue5631] Distutils "upload" command does not show up in --help-commands output.

2009-03-31 Thread Georg Brandl
Georg Brandl added the comment: Committed in r70944. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue1725295] Line ending bug SimpleXMLRPCServer

2009-03-31 Thread Georg Brandl
Georg Brandl added the comment: CGI specifies \r\n line ends anyway, so this patch goes in the wrong direction. -- nosy: +georg.brandl resolution: -> wont fix status: open -> closed ___ Python tracker <http://bugs.python.org/iss

[issue5631] Distutils "upload" command does not show up in--help-commands output.

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

[issue5647] MutableSet.__iand__ implementation calls self.discard while iterating on self

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

[issue5637] 2to3 does not convert urllib.urlopen to urllib.request.urlopen

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

[issue5641] Local variables not freed when Exception raises in function called from cycle

2009-04-01 Thread Georg Brandl
Georg Brandl added the comment: This is not a question of "correct" behavior, but of documented semantics. We can't change that semantics in 2.x, like we did for 3.x, because many people rely on the exception variable being available after the except clause finishes. Closin

[issue5636] csv.reader next() method missing

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

[issue5655] fix glob.iglob docstring

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

[issue5205] String Formatting with namedtuple

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

[issue4438] Given a module hierarchy string 'a.b.c', add an easy way to import tail module 'c'

2009-04-01 Thread Georg Brandl
Georg Brandl added the comment: This feature is implemented as importlib.import_modules() in 2.7 and 3.1; for earlier versions there is also a backport on PyPI. -- nosy: +georg.brandl resolution: -> out of date status: open -> closed ___

[issue4573] zsh-style subpattern matching for fnmatch/glob

2009-04-01 Thread Georg Brandl
Georg Brandl added the comment: This can't go in like this, since suddenly accepting braces is a subtle change of semantics. I could imagine adding another function though, that has extended zsh-like globbing abilities. -- nosy: +georg.b

[issue5040] Bug of CGIXMLRPCRequestHandler

2009-04-01 Thread Georg Brandl
Changes by Georg Brandl : Added file: http://bugs.python.org/file13557/issue5040-py3k.diff ___ Python tracker <http://bugs.python.org/issue5040> ___ ___ Python-bugs-list m

[issue5040] Bug of CGIXMLRPCRequestHandler

2009-04-01 Thread Georg Brandl
Changes by Georg Brandl : Added file: http://bugs.python.org/file13558/issue5040-py27.diff ___ Python tracker <http://bugs.python.org/issue5040> ___ ___ Python-bugs-list m

[issue4572] add SEEK_* values to io and/or io.IOBase

2009-04-01 Thread Georg Brandl
Georg Brandl added the comment: Added in r70992. -- nosy: +georg.brandl resolution: -> accepted status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue5656] Coverage execution fails for files not encoded with utf-8

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

[issue5657] bad repr of itertools.count object with negative value on OS X 10.4 with 10.5 build

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

[issue5658] make html in doc fails because Makefile assigns python to PYTHON

2009-04-01 Thread Georg Brandl
Georg Brandl added the comment: We don't recommend calling Python 3.x "python". In fact, the executable will always be called "python3" in Python 3.1+. -- nosy: +georg.brandl resolution: -> wont fix status: open -> closed __

[issue5627] PyDict_SetItemString() fails when the second argument is null

2009-04-01 Thread Georg Brandl
Georg Brandl added the comment: Raymond, do you have an opinion about this? -- assignee: -> rhettinger nosy: +rhettinger ___ Python tracker <http://bugs.python.org/iss

[issue5627] PyDict_SetItemString() fails when the second argument is null

2009-04-01 Thread Georg Brandl
Georg Brandl added the comment: Closing. -- status: open -> closed ___ Python tracker <http://bugs.python.org/issue5627> ___ ___ Python-bugs-list mai

[issue5658] make html in doc fails because Makefile assigns python to PYTHON

2009-04-01 Thread Georg Brandl
Georg Brandl added the comment: Why is a change to the Makefile an "inconsistency"? Anyway, once 3.1 is released the naming scheme will be announced. -- ___ Python tracker <http://bugs.python.

[issue4217] Add file comparisons to the unittest library

2009-04-01 Thread Georg Brandl
Georg Brandl added the comment: I'm not sure we need new unittest functions for file comparison; but a function in difflib that directly takes two filenames would perhaps be accepted. That will need a new patch however. -- assignee: -> zseil nosy: +georg.brandl, zseil re

[issue5641] Local variables not freed when Exception raises in function called from cycle

2009-04-02 Thread Georg Brandl
Georg Brandl added the comment: I know, but that object is kept alive by the frame object that is kept alive by the exception assigned to "e". -- status: open -> closed ___ Python tracker <http://bugs.pyth

[issue5658] make html in doc fails because Makefile assigns python to PYTHON

2009-04-02 Thread Georg Brandl
Georg Brandl added the comment: Even Python 3.0 didn't install its built executable as "python". We just made that decision, which was done for Python 3.0 because it couldn't be considered stable, permanent. -- ___ P

[issue5215] change value of local variable in debug

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

[issue3722] print followed by exception eats print with doctest

2009-04-02 Thread Georg Brandl
Changes by Georg Brandl : -- priority: -> low type: behavior -> feature request ___ Python tracker <http://bugs.python.org/issue3722> ___ ___ Python-bugs-

[issue5634] cPickle error in case of recursion limit

2009-04-04 Thread Georg Brandl
Georg Brandl added the comment: Yes, that's true. It should be more generally helpful in there. -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python

[issue5642] multiprocessing.Pool.map() docs slightly misleading

2009-04-04 Thread Georg Brandl
Georg Brandl added the comment: Fixed in r71149. -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/issue5642> ___ __

[issue5601] webbrowser doesn't just open browsers

2009-04-04 Thread Georg Brandl
Georg Brandl added the comment: Updated docs in r71150. -- status: pending -> closed ___ Python tracker <http://bugs.python.org/issue5601> ___ ___ Python-

[issue4375] inspect.getsource doesn't work with PYTHONPATH and source compiled from a different dir

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

[issue5142] pdb feature request: Ability to skip standard lib modules and other selected packages/modules

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

[issue5687] Docstring typo in _io

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

[issue5688] inability to ignore multiline warnings -- request to add re.DOTALL to re.compile

2009-04-05 Thread Georg Brandl
Georg Brandl added the comment: I don't really understand this; first, the regex doesn't have to match the entire warning message (and I hope the important things are in the first line, otherwise the warning message is bad) and second, it's always possible to use ``(.|\n)`` i

[issue5689] please support lzma compression as an extension and in the tarfile module

2009-04-05 Thread Georg Brandl
Georg Brandl added the comment: If we support LZMA, we should do so on all platforms; it kind of restricts usefulness to only have it on some. Maybe the LZMA code in one of the many archival tools in existence that supports it is not LGPL'd? -- nosy: +georg.b

[issue5696] test_telnetlib augmentation

2009-04-05 Thread Georg Brandl
Georg Brandl added the comment: FWIW, it works here too with 0.0 and 0.1 seconds (it's Linux x86). -- nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/i

[issue1742940] can't run single lamba funcs as unittest

2009-04-05 Thread Georg Brandl
Georg Brandl added the comment: This is fixed in at least 2.6 and trunk. -- nosy: +georg.brandl resolution: -> out of date status: open -> closed ___ Python tracker <http://bugs.python.org/iss

[issue1707768] os.path.normpath changes path (chops of trailing slash)

2009-04-05 Thread Georg Brandl
Georg Brandl added the comment: The amount of discussion on this bug is already an indication that the proposed change is questionable. Combine this with backwards-compatibility concerns, and it's enough reason not to change this. -- nosy: +georg.brandl resolution: -> wont fi

[issue1718017] posixpath and friends have uses that should be documented

2009-04-05 Thread Georg Brandl
Georg Brandl added the comment: Should be covered with r71216. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/iss

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