[issue9164] 2.7 sysconfig should handle arch duplicates while building universal on OS X

2010-07-07 Thread Jyrki Wahlstedt
Jyrki Wahlstedt jyrki.wahlst...@wahlstedt.fi added the comment: The same line appears in Lib/distutils/util.py, line 148, and requires to be treated the same. These are the changes I had to make to get the build done for both 32- and 64-bit architectures. --

[issue9176] module termios doesn't build on HP-UX

2010-07-07 Thread Ronald Oussoren
Ronald Oussoren ronaldousso...@mac.com added the comment: Maybe. I don't know when I'll have time to research the issue though. The code looks correct and the HP-UX system headers do include the definition for the type of 'mode' but for some reason that definition doesn't get picked up.

[issue9175] ctypes doesn't build on hp-ux

2010-07-07 Thread Ronald Oussoren
Ronald Oussoren ronaldousso...@mac.com added the comment: I don't think installing GCC will be possible on the machine I did the build on (for non-technical reasons). -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9175

[issue9164] 2.7 sysconfig should handle arch duplicates while building universal on OS X

2010-07-07 Thread Ronald Oussoren
Ronald Oussoren ronaldousso...@mac.com added the comment: How do you build the univeral binary. I regularly build multiple arch builds using the builtin support for that (--enable-universalsdk=/ --enable-univeral-archs=3-way) and don't need a patch for that. --

[issue9164] 2.7 sysconfig should handle arch duplicates while building universal on OS X

2010-07-07 Thread Ronald Oussoren
Ronald Oussoren ronaldousso...@mac.com added the comment: BTW. A cleaner replacement is: archs = tuple(sorted(set(archs))) (That is, sorted works on arbitrary iterables) Tarek: is using set() acceptable in the distutils sources? -- nosy: +tarek

[issue9164] 2.7 sysconfig should handle arch duplicates while building universal on OS X

2010-07-07 Thread Marc-Andre Lemburg
Marc-Andre Lemburg m...@egenix.com added the comment: sorted() and set() were introduced in Python 2.4. If your code will not run in Python 2.3 anyway, then using those should be fine. The only other place currently using set() is the MSVC9 compiler code. sorted() is not used at all in

[issue9185] os.getcwd causes infinite loop on solaris

2010-07-07 Thread Zsolt Cserna
New submission from Zsolt Cserna zsolt.cse...@morganstanley.com: os.getcwd() causes infinite loop on solaris10 when the length of the current directory is greater than 1024 (them limit of the maximum absolute path). os.getcwd is implemented by a while loop in python, see the function

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

2010-07-07 Thread Mark Summerfield
Mark Summerfield m...@qtrac.eu added the comment: On the PyPI page: http://pypi.python.org/pypi/regex/0.1.20100706.1 in the Subscripting for groups bullet it gives this pattern: r(?before.*?)(?num\\d+)(?after.*) Shouldn't this be: r(?Pbefore.*?)(?Pnum\\d+)(?Pafter.*) Or has a new syntax been

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

2010-07-07 Thread Mark Summerfield
Mark Summerfield m...@qtrac.eu added the comment: If you do: import regex as re dir(re) you get over 160 items, many of which begin with an underscore and so are private. Couldn't __dir__ be reimplemented to eliminate them. (I know that the current re module's dir() also returns private

[issue9185] os.getcwd causes infinite loop on solaris

2010-07-07 Thread Zsolt Cserna
Zsolt Cserna zsolt.cse...@morganstanley.com added the comment: There would be also a solution to allocate a fix buffer with MAXLPATHLEN size and call the getcwd function only one time - if MAXLPATHLEN is available. -- ___ Python tracker

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

2010-07-07 Thread Mark Summerfield
Mark Summerfield m...@qtrac.eu added the comment: I was wrong about r(?name.*). It is valid in the new engine. And the PyPI docs do say so immediately _following_ the example. I've tried all the examples in Programming in Python 3 second edition using import regex as re and they all worked.

[issue9185] os.getcwd causes infinite loop on solaris

2010-07-07 Thread Stefan Krah
Stefan Krah stefan-use...@bytereef.org added the comment: I've encountered this a while ago on OpenSolaris. According to the man page http://docs.sun.com/app/docs/doc/816-5168/getcwd-3c?a=view this would be a bug in getcwd(): ERANGE The size argument is greater than 0 and less than the

[issue9185] os.getcwd causes infinite loop on solaris

2010-07-07 Thread Zsolt Cserna
Zsolt Cserna zsolt.cse...@morganstanley.com added the comment: You are right, but this bug could be easily avoided by using one of the suggested solutions. In my experience a fix sized buffer (whose size is MAXLPATHLEN - or 1024 if not defined) is usually passed to getcwd and the errno is

[issue9185] os.getcwd causes infinite loop on solaris

2010-07-07 Thread Stefan Krah
Stefan Krah stefan-use...@bytereef.org added the comment: I agree that there should be a workaround. In py3k the function is implemented like you suggest. -- stage: - needs patch ___ Python tracker rep...@bugs.python.org

[issue8400] zipimporter find_module fullname mis-documented

2010-07-07 Thread Ryan Kelly
Ryan Kelly r...@rfk.id.au added the comment: Was also just bitten by this, trying to muck with PEP-302-style import hooks. Note that the documented behaviour of zipimporter is also the behaviour required by PEP 302, i.e. full dotted module name. -- nosy: +rfk

[issue9186] math.log1p(-1.0) produces OverflowError; should be ValueError

2010-07-07 Thread Mark Dickinson
New submission from Mark Dickinson dicki...@gmail.com: from math import log1p log1p(-1.0) Traceback (most recent call last): File stdin, line 1, in module OverflowError: math range error This should be a ValueError instead. (Thanks Benjamin for noticing this.) -- assignee:

[issue9186] math.log1p(-1.0) produces OverflowError; should be ValueError

2010-07-07 Thread Mark Dickinson
Changes by Mark Dickinson dicki...@gmail.com: -- stage: - patch review ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9186 ___ ___

[issue9187] Can't find file vcvars64.bat

2010-07-07 Thread Lloyd Sheng
New submission from Lloyd Sheng sen...@gmail.com: While I install Pymongo,Error shows that: running install running bdist_egg running egg_info writing pymongo.egg-info\PKG-INFO writing top-level names to pymongo.egg-info\top_level.txt writing dependency_links to

[issue3485] os.path.normcase documentation/behaviour unclear on Mac OS X

2010-07-07 Thread Ronald Oussoren
Ronald Oussoren ronaldousso...@mac.com added the comment: Note that this does not just affect MacOSX, this even affects Linux (although the behaviour on the default filesystems is different). On Linux the default is case-sensitive filesystems, but you can use network filesystems that have

[issue9187] Can't find file vcvars64.bat

2010-07-07 Thread Stefan Krah
Stefan Krah stefan-use...@bytereef.org added the comment: There error info is same as Issue7511. Yes. Issue 7511 will be fixed at some point in distutils2. Closing this as a duplicate. -- nosy: +skrah resolution: - duplicate stage: - committed/rejected status: open - closed

[issue8605] test_gdb can fail with compiler opts

2010-07-07 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: Minor nit: given that final_opt is set to at the start of the loop, the first conditional in: if final_opt and final_opt != '-O0': appears to be redundant. I don't think it is (the empty string is false, but != -O0 is true).

[issue9188] test_gdb fails on narrow unicode builds

2010-07-07 Thread Antoine Pitrou
New submission from Antoine Pitrou pit...@free.fr: == FAIL: test_unicode (test.test_gdb.PrettyPrintTests) Verify the pretty-printing of unicode values --

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

2010-07-07 Thread Georg Brandl
Georg Brandl ge...@python.org added the comment: Mark, __dir__ as a special method only works when defined on types, so you'd have to use a module subclass for the regex module :) As I already suggested, it is probably best to move most of the private stuff into a separate module, and only

[issue2744] Fix test_cProfile

2010-07-07 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: Is there anybody who can run with this as it's been in limbo for over two years? -- nosy: +BreamoreBoy versions: +Python 2.7, Python 3.2 ___ Python tracker rep...@bugs.python.org

[issue4724] setting f_exc_traceback aborts in debug builds

2010-07-07 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: Anybody willing and able to run with this? -- nosy: +BreamoreBoy stage: - needs patch type: - crash versions: +Python 3.1, Python 3.2 -Python 2.6 ___ Python tracker rep...@bugs.python.org

[issue4928] Problem with tempfile.NamedTemporaryFile on Solaris 10

2010-07-07 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: Shouldn't this get looked at as it's high priority, albeit over a year old? -- nosy: +BreamoreBoy versions: +Python 3.1, Python 3.2 -Python 2.6 ___ Python tracker rep...@bugs.python.org

[issue8605] test_gdb can fail with compiler opts

2010-07-07 Thread Dave Malcolm
Dave Malcolm dmalc...@redhat.com added the comment: Oops, my bad. Patch looks good as is. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8605 ___

[issue4928] Problem with tempfile.NamedTemporaryFile on Solaris 10

2010-07-07 Thread Stefan Krah
Stefan Krah stefan-use...@bytereef.org added the comment: I can reproduce this on Ubuntu with Python 2.7 and 3.2. -- nosy: +skrah ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4928 ___

[issue4928] Problem with tempfile.NamedTemporaryFile

2010-07-07 Thread Stefan Krah
Changes by Stefan Krah stefan-use...@bytereef.org: -- title: Problem with tempfile.NamedTemporaryFile on Solaris 10 - Problem with tempfile.NamedTemporaryFile ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4928

[issue9164] 2.7 sysconfig should handle arch duplicates while building universal on OS X

2010-07-07 Thread Tarek Ziadé
Tarek Ziadé ziade.ta...@gmail.com added the comment: Since there will be no standalone release of this code, no worries -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9164 ___

[issue9189] Improve CFLAGS handling

2010-07-07 Thread Jeffrey Yasskin
New submission from Jeffrey Yasskin jyass...@gmail.com: Patch at http://codereview.appspot.com/1749042. The idea here is to let the user set CFLAGS on either configure or make (or both), and have later settings appear later in the $CC command line. I left OPT, BASECFLAGS, and EXTRA_CFLAGS

[issue9189] Improve CFLAGS handling

2010-07-07 Thread Mark Dickinson
Changes by Mark Dickinson dicki...@gmail.com: -- nosy: +mark.dickinson ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9189 ___ ___ Python-bugs-list

[issue9186] math.log1p(-1.0) produces OverflowError; should be ValueError

2010-07-07 Thread Mark Dickinson
Mark Dickinson dicki...@gmail.com added the comment: Fixed in py3k in r82626. I'm going to leave this as a 'won't fix' for the maintenance branches, on the basis that the risk of breaking code by changing the exception type exceeds the benefit from the fix. -- resolution: - fixed

[issue9190] Undefined behaviour in _PyFloat_Pack4

2010-07-07 Thread Mark Dickinson
New submission from Mark Dickinson dicki...@gmail.com: _PyFloat_Pack4 does a double-to-float cast, without first checking that the value being converted is within the range of a float. According to C99 6.3.1.5p2, this results in undefined behaviour. It should be fixed (probably via

[issue876421] logging handlers raise exception on level

2010-07-07 Thread Mickey Killianey
Mickey Killianey mickey.killia...@gmail.com added the comment: Would you be willing to consider supporting the level keyword as a convenience for the most simple/common Handlers? (For example, maybe just StreamHandler and FileHandler?) -- nosy: +Mickey.Killianey

[issue9146] Segfault in hashlib in OpenSSL FIPS mode using non-FIPS-compliant hashes, if ssl imported before hashlib

2010-07-07 Thread Dave Malcolm
Dave Malcolm dmalc...@redhat.com added the comment: Thanks. The relevant code in setup.py is all wrapped with --pydebug: if COMPILED_WITH_PYDEBUG or not have_usable_openssl: All of my testing had been --with-pydebug. Rebuilding without --with-pydebug leads to some interesting

[issue9191] winreg.c:Reg2Py() may leak memory (in unusual circumstances)

2010-07-07 Thread Daniel Stutzbach
New submission from Daniel Stutzbach dan...@stutzbachenterprises.com: In Reg2Py() in winreg.c, in the REG_MULTI_SZ case, there's the following: wchar_t **str = (wchar_t **)malloc(sizeof(wchar_t *)*s); if (str == NULL) return PyErr_NoMemory();

[issue9191] winreg.c:Reg2Py() may leak memory (in unusual circumstances)

2010-07-07 Thread Brian Curtin
Changes by Brian Curtin cur...@acm.org: -- nosy: +brian.curtin ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9191 ___ ___ Python-bugs-list mailing

[issue9192] Add a a way to determine float format

2010-07-07 Thread Benjamin Peterson
New submission from Benjamin Peterson benja...@python.org: At the moment, the only way is float.__getformat__() which is unpleasant and unofficial. Perhaps we could add a member to sys.float_info. -- components: Interpreter Core messages: 109488 nosy: benjamin.peterson, mark.dickinson

[issue9193] Versioned .so files

2010-07-07 Thread Barry A. Warsaw
New submission from Barry A. Warsaw ba...@python.org: As described in the thread started here: http://mail.python.org/pipermail/python-dev/2010-June/100998.html this bug requests that a new configure option called --with-so-abi-tag be added to Python 3.2 to support sharing of .so files for

[issue9193] Versioned .so files

2010-07-07 Thread Barry A. Warsaw
Changes by Barry A. Warsaw ba...@python.org: -- stage: - patch review ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9193 ___ ___ Python-bugs-list

[issue9193] Versioned .so files

2010-07-07 Thread Barry A. Warsaw
Barry A. Warsaw ba...@python.org added the comment: Attaching patch from live branch living here: https://code.edge.launchpad.net/~barry/python/sovers -- Added file: http://bugs.python.org/file17895/preview.diff ___ Python tracker

[issue9193] Versioned .so files

2010-07-07 Thread Dave Malcolm
Changes by Dave Malcolm dmalc...@redhat.com: -- nosy: +dmalcolm ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9193 ___ ___ Python-bugs-list

[issue4928] Problem with tempfile.NamedTemporaryFile

2010-07-07 Thread Martin v . Löwis
Martin v. Löwis mar...@v.loewis.de added the comment: Unfortunately, I typically don't have time to consider the priority of issues. However, in the specific case, I also fail to see the bug. Where does it say that they are supposed to be deleted when the process is killed, and what mechanism

[issue4928] Problem with tempfile.NamedTemporaryFile

2010-07-07 Thread Jean-Paul Calderone
Jean-Paul Calderone exar...@twistedmatrix.com added the comment: I can't think of any way that you might be able to implement the behavior being requested here. Instead, if you don't want to leave files lying around, use TemporaryFile instead of NamedTemporaryFile. Perhaps the documentation

[issue4928] Problem with tempfile.NamedTemporaryFile

2010-07-07 Thread Martin v . Löwis
Martin v. Löwis mar...@v.loewis.de added the comment: I can't think of any way that you might be able to implement the behavior being requested here. Thanks for the confirmation; lowering the priority then. It would, of course, be possible to improve quality by registering an atexit

[issue5907] repr of time.struct_time type does not eval

2010-07-07 Thread Alexander Belopolsky
Changes by Alexander Belopolsky belopol...@users.sourceforge.net: -- dependencies: +String interpolation doesn't work with sys.version_info ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5907

[issue9189] Improve CFLAGS handling

2010-07-07 Thread Brett Cannon
Brett Cannon br...@python.org added the comment: Just to say what I said in my Rietveld review of the patch: I support the approach Jeffrey is taking and the patch looks good. -- ___ Python tracker rep...@bugs.python.org

[issue8413] String interpolation doesn't work with sys.version_info

2010-07-07 Thread Alexander Belopolsky
Alexander Belopolsky belopol...@users.sourceforge.net added the comment: This is definitely the right way to do it. I expect that I will have only minor nit-picks as I go through the patch. 1. You can probably just do #define PyStructSequence_SET_ITEM PyTuple_SET_ITEM #define

[issue9189] Improve CFLAGS handling

2010-07-07 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis arfrever@gmail.com: -- nosy: +Arfrever ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9189 ___

[issue9193] Versioned .so files

2010-07-07 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis arfrever@gmail.com: -- nosy: +Arfrever ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9193 ___

[issue8413] String interpolation doesn't work with sys.version_info

2010-07-07 Thread Benjamin Peterson
Benjamin Peterson benja...@python.org added the comment: 2010/7/7 Alexander Belopolsky rep...@bugs.python.org: Alexander Belopolsky belopol...@users.sourceforge.net added the comment: This is definitely the right way to do it.  I expect that I will have only minor nit-picks as I go through

[issue8413] String interpolation doesn't work with sys.version_info

2010-07-07 Thread Alexander Belopolsky
Alexander Belopolsky belopol...@users.sourceforge.net added the comment: On Wed, Jul 7, 2010 at 4:19 PM, Benjamin Peterson rep...@bugs.python.org wrote:  - PyStructSequence_New does not fill ob_item array with NULLs. I'm not sure it really matters, since the fields should always be filled

[issue8413] String interpolation doesn't work with sys.version_info

2010-07-07 Thread Benjamin Peterson
Benjamin Peterson benja...@python.org added the comment: (New patch addresses review.) -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8413 ___

[issue8413] String interpolation doesn't work with sys.version_info

2010-07-07 Thread Benjamin Peterson
Benjamin Peterson benja...@python.org added the comment: Applied in r82636. -- resolution: - fixed status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8413 ___

[issue8413] String interpolation doesn't work with sys.version_info

2010-07-07 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis arfrever@gmail.com added the comment: I would suggest to document changed behavior of string interpolation with sys.version_info and sys.getwindowsversion() in What’s New in Python 2.7 page and maybe What’s New In Python 3.1 page. --

[issue8413] String interpolation doesn't work with sys.version_info

2010-07-07 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- stage: unit test needed - committed/rejected ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8413 ___

[issue8413] String interpolation doesn't work with sys.version_info

2010-07-07 Thread Raymond Hettinger
Raymond Hettinger rhettin...@users.sourceforge.net added the comment: This was a fantastic check-in. Thanks Benjamin. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8413 ___

[issue1820] Enhance Object/structseq.c to match namedtuple and tuple api

2010-07-07 Thread Benjamin Peterson
Benjamin Peterson benja...@python.org added the comment: structseq now does subclass tuple, so if there's any interest in adding namedtuple APIs, now it should be easier. -- nosy: +benjamin.peterson ___ Python tracker rep...@bugs.python.org

[issue5288] tzinfo objects with sub-minute offsets are not supported (e.g. UTC+05:53:28)

2010-07-07 Thread Alexander Belopolsky
Alexander Belopolsky belopol...@users.sourceforge.net added the comment: Uploaded issue5288.diff to Rietveld: http://codereview.appspot.com/1698050 -- nosy: +benjamin.peterson ___ Python tracker rep...@bugs.python.org

[issue4928] Problem with tempfile.NamedTemporaryFile

2010-07-07 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: Where does it say that they are supposed to be deleted when the process is killed, Well, it is more of a natural expectation I guess. and what mechanism specifically is supposed to actually perform the deletion? That's not the kind of

[issue9189] Improve CFLAGS handling

2010-07-07 Thread Marc-Andre Lemburg
Marc-Andre Lemburg m...@egenix.com added the comment: Jeffrey Yasskin wrote: New submission from Jeffrey Yasskin jyass...@gmail.com: Patch at http://codereview.appspot.com/1749042. The idea here is to let the user set CFLAGS on either configure or make (or both), and have later

[issue5127] Use Py_UCS4 instead of Py_UNICODE in unicodectype.c

2010-07-07 Thread Amaury Forgeot d'Arc
Changes by Amaury Forgeot d'Arc amaur...@gmail.com: -- assignee: - amaury.forgeotdarc ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5127 ___ ___

[issue2986] difflib.SequenceMatcher not matching long sequences

2010-07-07 Thread Vlastimil Brom
Vlastimil Brom vlastimil.b...@gmail.com added the comment: I guess, I am not supposed to post to python-dev - not being a python developer, hopefully it is appropriate to add a comment here - only based on my current usage of (a modified) difflib.SequenceMatcher. It seems, the mentions of text

[issue5288] tzinfo objects with sub-minute offsets are not supported (e.g. UTC+05:53:28)

2010-07-07 Thread Alexander Belopolsky
Alexander Belopolsky belopol...@users.sourceforge.net added the comment: issue5288a.diff addressed comments from Rietveld. -- stage: unit test needed - commit review Added file: http://bugs.python.org/file17897/issue5288a.diff ___ Python tracker

[issue5127] Use Py_UCS4 instead of Py_UNICODE in unicodectype.c

2010-07-07 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc amaur...@gmail.com added the comment: Now I wonder whether it's reasonable to consider this character U+1 (LINEAR B SYLLABLE B008 A) as printable with repr(). Yes, its category is Lo, but is there a font which can display it? --

[issue5288] tzinfo objects with sub-minute offsets are not supported (e.g. UTC+05:53:28)

2010-07-07 Thread Alexander Belopolsky
Alexander Belopolsky belopol...@users.sourceforge.net added the comment: C code changes eliminating round-trips between timdelta and int offsets committed in r82642 and Python code changes committed to sandbox in r82641. Now the requested behavior change is easy and I am about +0.5 on relaxing

[issue2986] difflib.SequenceMatcher not matching long sequences

2010-07-07 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2986 ___ ___ Python-bugs-list mailing list

[issue2986] difflib.SequenceMatcher not matching long sequences

2010-07-07 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2986 ___ ___ Python-bugs-list mailing list

[issue9194] winreg:fixupMultiSZ should check that P Q in the inner loop

2010-07-07 Thread Daniel Stutzbach
New submission from Daniel Stutzbach dan...@stutzbachenterprises.com: The comment before fixupMultiSZ and countString states: ** Note that fixupMultiSZ and countString have both had changes ** made to support incorrect strings. The registry specification ** calls for strings to be terminated

[issue9189] Improve CFLAGS handling

2010-07-07 Thread Jeffrey Yasskin
Jeffrey Yasskin jyass...@gmail.com added the comment: Passing in user values to CFLAGS on configure should already work without the patch. Since the user's CFLAGS settings are overridden by Python's OPT settings, it doesn't already work without the patch. I'm not sure why you'd want to

[issue9194] winreg:fixupMultiSZ should check that P Q in the inner loop

2010-07-07 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- components: +Extension Modules, Windows nosy: +brian.curtin stage: - unit test needed type: - behavior ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9194

[issue5127] Use Py_UCS4 instead of Py_UNICODE in unicodectype.c

2010-07-07 Thread Ezio Melotti
Ezio Melotti ezio.melo...@gmail.com added the comment: Given that '\U0001'.isprintable() returns True, I would say yes. If someone needs to print this char and has an appropriate font to do it, I don't see why it shouldn't work. -- ___ Python

[issue9189] Improve CFLAGS handling

2010-07-07 Thread Ronald Oussoren
Changes by Ronald Oussoren ronaldousso...@mac.com: -- nosy: +ronaldoussoren ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9189 ___ ___