[issue5187] distutils upload should prompt for the user/password too

2010-08-08 Thread Éric Araujo
Changes by Éric Araujo : -- components: +Distutils2 -Distutils stage: -> needs patch versions: +Python 2.5, Python 2.6, Python 2.7, Python 3.1 ___ Python tracker ___

[issue5187] distutils upload should prompt for the user/password too

2010-08-08 Thread Éric Araujo
Éric Araujo added the comment: Hm, doing user interaction in finalize_options seems strange to me, but if we do it in run only other commands (upload_docs in d2) would not be able to get the options (although I’m not sure at all, since the index commands have strange command-line parsing). C

[issue4617] SyntaxError when free variable name is also an exception target

2010-08-08 Thread Stefan Behnel
Changes by Stefan Behnel : -- nosy: -scoder ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue9544] xdrlib.Packer().pack_fstring throws a TypeError when called with a str()

2010-08-08 Thread Paul Arnold
Paul Arnold added the comment: It will apply to 3.2 also, checking in SVN there have been no changes to xdrlib.py for a couple of years. The documentation makes no mention of the need to encode strings. -- ___ Python tracker

[issue7973] Wrong spelling of distutils options in error messages and docs

2010-08-08 Thread Éric Araujo
Éric Araujo added the comment: Ported to distutils2 in 8e948c6e93f9. -- components: +Distutils2 nosy: +merwok stage: -> committed/rejected ___ Python tracker ___ ___

[issue9544] xdrlib.Packer().pack_fstring throws a TypeError when called with a str()

2010-08-08 Thread Éric Araujo
Éric Araujo added the comment: Editing type. (FYI, you can follow the link to see some descriptions.) -- type: crash -> behavior ___ Python tracker ___ __

[issue9544] xdrlib.Packer().pack_fstring throws a TypeError when called with a str()

2010-08-08 Thread Éric Araujo
Éric Araujo added the comment: Thanks for the report. Can you tell if it applies to 3.2? Also, is the doc unclear on this point? -- nosy: +merwok ___ Python tracker ___

[issue9544] xdrlib.Packer().pack_fstring throws a TypeError when called with a str()

2010-08-08 Thread Paul Arnold
New submission from Paul Arnold : In Python 3.1, xdrlib.Packer().pack_fstring() throws a TypeError if called with a str() (an encoded string bytes() works just fine). >>> xdrlib.Packer().pack_fstring(6, "foobar") Traceback (most recent call last): File "", line 1, in File "/usr/lib/python3

[issue9396] Standardise (and publish?) cache handling in standard library

2010-08-08 Thread Nick Coghlan
Nick Coghlan added the comment: On Mon, Aug 9, 2010 at 3:11 PM, Raymond Hettinger wrote: > ISTM, we should just provide basic caching with reasonable space consumption > (i.e. not huge) that gives improvements to common use cases (like I've done > with the fnmatch and re module) and let progr

[issue9532] pipe.read hang, when calling commands.getstatusoutput in multi-threading code of python 2.4

2010-08-08 Thread denny
denny added the comment: Hi David I have tried in another testbd with python 2.6.5, and the problem of hang doesn't reproduce, after retrying for several times. The original hang happens in pipe.read of commands module. After comparing the code of python 2.4.4 and python 2.6.5, I noticed two

[issue9396] Standardise (and publish?) cache handling in standard library

2010-08-08 Thread Raymond Hettinger
Raymond Hettinger added the comment: I was thinking about the problem of developers wanting a different cache size than that provided in standard lib modules. ISTM that now we've offered caching abilities in functools, a developer can easily add another layer of cache around any API they are

[issue9396] Standardise (and publish?) cache handling in standard library

2010-08-08 Thread Nick Coghlan
Nick Coghlan added the comment: On Mon, Aug 9, 2010 at 2:29 PM, Raymond Hettinger wrote: > I did find a simple way to dynamically resize the maxcache, but did not apply > it yet.   Will look at more applications to see if it is really needed. > > Nick, thanks for the great ideas.  These change

[issue4892] Sending Connection-objects over multiprocessing connections fails

2010-08-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: -Python 2.7, Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue3831] Multiprocessing: Expose underlying pipe in queues

2010-08-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue1443875] email/charset.py convert() patch

2010-08-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue634412] RFC 2112 in email package

2010-08-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue4899] doctest should support fixtures

2010-08-08 Thread Tim Peters
Tim Peters added the comment: I stopped understanding doctest the last time it was rewritten - it got far more generalized than I ever intended already. It's up to the younger generation to decide how much more inscrutable to make it now ;-) -- __

[issue7007] Tiny inconsistency in the orthography of "url encoded" in the doc of urllib.parse

2010-08-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: -Python 3.0 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue1109659] distutils argument parsing is bogus

2010-08-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue5187] distutils upload should prompt for the user/password too

2010-08-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue694339] IDLE: Dedenting with Shift+Tab

2010-08-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- stage: -> patch review title: Dedenting with Shift+Tab -> IDLE: Dedenting with Shift+Tab versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Python tracker ___

[issue3735] allow multiple threads to efficiently send the same requests to a processing.Pool without incurring duplicate processing

2010-08-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue2066] Adding new CNS11643, a *huge* charset, support in cjkcodecs

2010-08-08 Thread Terry J. Reedy
Terry J. Reedy added the comment: It seems to me that the last few messages suggest that this should be closed. -- nosy: +terry.reedy versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Python tracker ___

[issue1682403] docutils clarification request for "rest"

2010-08-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue1116520] Prefix search is filesystem-centric

2010-08-08 Thread Terry J. Reedy
Terry J. Reedy added the comment: Is this request still relevant for 3.2? -- nosy: +terry.reedy versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Python tracker ___ __

[issue3592] Patch to add imp.get_codingspec()

2010-08-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.2 -Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue9396] Standardise (and publish?) cache handling in standard library

2010-08-08 Thread Raymond Hettinger
Raymond Hettinger added the comment: Applied the lru_cache() to fnmatch and re. See r83874 r83871. I did find a simple way to dynamically resize the maxcache, but did not apply it yet. Will look at more applications to see if it is really needed. Nick, thanks for the great ideas. These cha

[issue6786] readline and zero based indexing

2010-08-08 Thread Terry J. Reedy
Terry J. Reedy added the comment: I do not see a change as being accepted. It would not add any new function but probably break code, if not habits, for the sake of consistency that would have been nice. -- resolution: -> rejected status: open -> closed versions: -Python 2.7, Python

[issue5248] Adding T_SIZET to structmember.h

2010-08-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue1748064] inspect.getargspec fails on built-in or slot wrapper methods

2010-08-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: -Python 2.7, Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue4733] Add a "decode to declared encoding" version of urlopen to urllib

2010-08-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.2 -Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1491804] Simple slice support for list.sort() and .reverse()

2010-08-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue1886] Permit to easily use distutils "--formats=tar, gztar, bztar" on all systems

2010-08-08 Thread Éric Araujo
Éric Araujo added the comment: distutils in 2.7 and 3.1 use tarfile. -- resolution: -> duplicate stage: -> committed/rejected status: open -> closed superseder: -> make distutils use the tarfile module ___ Python tracker

[issue1763] Winpath module - easy access to Windows directories like My Documents

2010-08-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue1654367] [PATCH] Debuggers need a way to change the locals of a frame

2010-08-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue1617161] Instance methods compare equal when their self's are equal

2010-08-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue6048] make distutils use the tarfile module

2010-08-08 Thread Éric Araujo
Changes by Éric Araujo : -- resolution: -> fixed stage: -> committed/rejected title: make distutils use the tarinfo command -> make distutils use the tarfile module ___ Python tracker

[issue1158231] string.Template does not allow step-by-step replacements

2010-08-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.2 -Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscrib

[issue1500504] Alternate RFC 3986 compliant URI parsing module

2010-08-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue5441] Convenience API for timeit.main

2010-08-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue1746656] IPv6 Interface naming/indexing functions

2010-08-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue1690201] Added support for custom readline functions

2010-08-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue9396] Standardise (and publish?) cache handling in standard library

2010-08-08 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +merwok ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org

[issue1744382] Read Write lock

2010-08-08 Thread Terry J. Reedy
Terry J. Reedy added the comment: Yaakov, do you have any interest in this, or should we close this. -- nosy: +terry.reedy versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Python tracker ___

[issue9396] Standardise (and publish?) cache handling in standard library

2010-08-08 Thread Nick Coghlan
Nick Coghlan added the comment: Yeah, I'm not sure the dynamic resizing makes sense in general. I was just pointing it out as something supported by the existing caches that could complicate a consolidation effort. -- ___ Python tracker

[issue1733259] ZipFile CallBack Needed...

2010-08-08 Thread Terry J. Reedy
Terry J. Reedy added the comment: I think this should be closed unless OP shows current interest. I do not think the ziplib is meant to be interactive, so I am dubious this would get accepted. -- nosy: +terry.reedy status: open -> pending versions: +Python 3.2 -Python 2.7, Python 3.1

[issue1730480] dict init/update accesses internal items of dict derivative

2010-08-08 Thread Terry J. Reedy
Terry J. Reedy added the comment: It is documented that access to special methods is more direct than normal path. This is not going to change. A similar example was discussed on python-list earlier this year with the above conclusion. -- nosy: +terry.reedy resolution: -> rejected st

[issue5416] str.replace does strange things when given a negative count

2010-08-08 Thread Terry J. Reedy
Terry J. Reedy added the comment: Changing to doc issue as two people suggested. Can anyone suggest new text to add? -- assignee: georg.brandl -> d...@python components: +Documentation -Interpreter Core nosy: +d...@python, terry.reedy stage: unit test needed -> needs patch versions: +P

[issue5506] io.BytesIO doesn't support the buffer protocol

2010-08-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.2 -Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1298835] vendor-packages directory.

2010-08-08 Thread Terry J. Reedy
Terry J. Reedy added the comment: "Further review" never happened. Should be close this? -- versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Python tracker ___ __

[issue1214675] module warnings lacks a remove filter function

2010-08-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- stage: -> unit test needed versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Python tracker ___ ___

[issue1654974] Binding annotations in tracebacks.

2010-08-08 Thread Terry J. Reedy
Terry J. Reedy added the comment: Nejucomo, do you have any interest in pursuing this or should be close it? -- nosy: +terry.reedy status: open -> pending versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Python tracker

[issue1654408] Installer should split tcl/tk and tkinter install options.

2010-08-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue1641544] rlcompleter tab completion in pdb

2010-08-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue2518] smtpd.py to handle huge email

2010-08-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue1625576] add ability to specify name to os.fdopen

2010-08-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue1615376] subprocess doesn\'t handle SIGPIPE

2010-08-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue1702036] Make Turtle thread-safe so it does not crash

2010-08-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- title: Turtle isn't thread-safe (crashes) -> Make Turtle thread-safe so it does not crash versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Python tracker _

[issue4630] IDLE no longer respects .Xdefaults insertOffTime

2010-08-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- stage: -> patch review versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Python tracker ___ ___ Python-

[issue1509798] replace dist/src/Tools/scripts/which.py with tmick's which

2010-08-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue1509060] Interrupt/kill threads w/exception

2010-08-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue1515839] socket timeout inheritance on accept

2010-08-08 Thread Terry J. Reedy
Terry J. Reedy added the comment: I am sorry this has not gotten any response. There does not seem to currently be anyone specifically working on the socket module, so this got lost among hundreds of other feature requests. -- nosy: +terry.reedy versions: +Python 3.2 -Python 2.7, Pyth

[issue1521051] Extra configurability for doctest TestCases

2010-08-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue1520879] make install change: Allow $DESTDIR to be relative

2010-08-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue1531415] parsetok.c emits warnings by writing to stderr

2010-08-08 Thread Terry J. Reedy
Terry J. Reedy added the comment: warning.py it still is in 3.1 -- nosy: +terry.reedy versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Python tracker ___

[issue1486713] HTMLParser : A auto-tolerant parsing mode

2010-08-08 Thread Terry J. Reedy
Terry J. Reedy added the comment: This needs to be checked for applicability to 3.x. Do beautifulsoup and other programs cover this ground (tolerant parsing of junk html)? -- nosy: +terry.reedy versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Pytho

[issue1559549] ImportError needs attributes for module and file name

2010-08-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue1475397] time.asctime_tz, time.strftime %z %C

2010-08-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- nosy: +belopolsky versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Python tracker ___ ___ Python-bug

[issue6678] inspect.currentframe documentation omits optional depth parameter

2010-08-08 Thread William Mill
William Mill added the comment: Terry: fair enough, I'll add that it's required to be an integer. I just meant that the brackets seemed not to be around other keyword arguments, not that it's not optional, sorry for being unclear. Ben and/or Terry: Would you prefer the inspect.currentframe d

[issue1500773] wm_attributes doesn't take keyword arguments

2010-08-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue1485576] Backwards compatibility support for Py_ssize_t

2010-08-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue5235] distutils seems to only work with VC++ 2008 (9.0)

2010-08-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue4480] bdist_msi and bdist_wininst are missing an uninstaller icon

2010-08-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue1154351] add get_current_dir_name() to os module

2010-08-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue5342] distutils removing old files, deleting unneeded old files from installed location.

2010-08-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue949667] setblocking() method on file objects

2010-08-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- stage: -> unit test needed versions: +Python 3.2 -Python 3.1 ___ Python tracker ___ ___ Python-bugs-l

[issue1692592] Stripping debugging symbols from compiled C extensions

2010-08-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- stage: -> unit test needed versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Python tracker ___ ___

[issue868845] Need unit tests for <...> reprs

2010-08-08 Thread Terry J. Reedy
Terry J. Reedy added the comment: Georg, did your two patches finish this issue, so it can be closed, or is there more to do? -- nosy: +terry.reedy versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Python tracker

[issue5231] Change format of a memoryview

2010-08-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- stage: -> unit test needed versions: +Python 3.2 -Python 3.1 ___ Python tracker ___ ___ Python-bugs-lis

[issue1453973] addheaders for urlopen / open / xxxx_open

2010-08-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue1589266] bdist_sunpkg distutils command

2010-08-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue4913] wave.py: add writesamples() and readsamples()

2010-08-08 Thread Terry J. Reedy
Terry J. Reedy added the comment: Please upload plain-text files with unique names for each file uploaded. -- nosy: +terry.reedy stage: -> unit test needed versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Python tracker

[issue4899] doctest should support fixtures

2010-08-08 Thread Terry J. Reedy
Terry J. Reedy added the comment: Tim, any opinion on whether this should be kept open or not? -- nosy: +terry.reedy stage: -> unit test needed versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Python tracker

[issue4885] mmap enhancement request

2010-08-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- stage: -> unit test needed versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Python tracker ___ ___ Pyt

[issue4761] create Python wrappers for openat() and others

2010-08-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- stage: -> unit test needed versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Python tracker ___ ___ Pyt

[issue4093] add gc/memory management tests to pybench

2010-08-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue3482] re.split, re.sub and re.subn should support flags

2010-08-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- stage: -> unit test needed versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Python tracker ___ ___ Pyt

[issue1886] Permit to easily use distutils "--formats=tar, gztar, bztar" on all systems

2010-08-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue1757072] Zipfile robustness

2010-08-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- stage: -> unit test needed versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Python tracker ___ ___

[issue6678] inspect.currentframe documentation omits optional depth parameter

2010-08-08 Thread Benjamin Peterson
Benjamin Peterson added the comment: Technically, inspect.currentframe() doesn't have a depth parameter. It's just implemented by aliasing to sys._getframe() which does. -- nosy: +benjamin.peterson ___ Python tracker

[issue6678] inspect.currentframe documentation omits optional depth parameter

2010-08-08 Thread Terry J. Reedy
Terry J. Reedy added the comment: A parameter with a default is very much optional. Makes no sense otherwise. In 3.x docs, the square brackets that were used in 2.x and are still used for optional args without default are left off because they are redundant. So in the example you depict, cont

[issue6678] inspect.currentframe documentation omits optional depth parameter

2010-08-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : Removed file: http://bugs.python.org/file18443/currentframe.diff ___ Python tracker ___ ___ Python-bugs-list mailin

[issue9526] 2 GB limit in array module

2010-08-08 Thread Benjamin Peterson
Changes by Benjamin Peterson : -- status: pending -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http

[issue9543] 2.6.6 rc1 socket.py flush() calls del on unbound 'view' variable

2010-08-08 Thread R. David Murray
R. David Murray added the comment: Thank you very much for testing the alpha and making a report. I've added Ezio to nosy since he backported the patch, and Barry since he's release manager. -- nosy: +barry, ezio.melotti, r.david.murray priority: normal -> release blocker stage: -> u

[issue7846] Fnmatch cache is never cleared during usage

2010-08-08 Thread Raymond Hettinger
Raymond Hettinger added the comment: For Py3.2, applying the new functools.lru_cache(). See r83871. -- nosy: +rhettinger ___ Python tracker ___ __

[issue9543] 2.6.6 rc1 socket.py flush() calls del on unbound 'view' variable

2010-08-08 Thread David I. Lehn
New submission from David I. Lehn : An error was introduced in 2.6.6 rc1 in the socket flush() call where del is called on the unbound 'view' variable. Associated commit and diff: http://svn.python.org/view?view=rev&revision=83624 http://svn.python.org/view/python/tags/r266rc1/Lib/socket.py?r1

[issue6678] inspect.currentframe documentation omits optional depth parameter

2010-08-08 Thread William Mill
William Mill added the comment: I've updated the patch to be based on the py3k branch, and updated the sys module's documentation for _getframe, since inspect just aliases sys._getframe to currentframe(). I've updated the argument list of both inspect.currentframe and sys._getframe to reflec

[issue9425] Rewrite import machinery to work with unicode paths

2010-08-08 Thread STINNER Victor
STINNER Victor added the comment: r83870 creates load_builtin() subfunction in import.c to prepare and simplify the big patch. -- ___ Python tracker ___

[issue9425] Rewrite import machinery to work with unicode paths

2010-08-08 Thread STINNER Victor
STINNER Victor added the comment: _Py_stat.patch: create _Py_stat() function. It will be used in import.c and zipimport.c. I added the function to import.c because, initially, I only used it there. But it's maybe not the best place for such function. posixmodule.c doesn't fit because it is n

[issue9425] Rewrite import machinery to work with unicode paths

2010-08-08 Thread STINNER Victor
STINNER Victor added the comment: I created a separated issue, #9542, to add the new function PyUnicode_FSDecoder(). -- ___ Python tracker ___ __

  1   2   3   >