[issue9819] TESTFN_UNICODE and TESTFN_UNDECODABLE

2010-09-11 Thread Hirokazu Yamamoto
Hirokazu Yamamoto ocean-c...@m2.ccsnet.ne.jp added the comment: Thank you, your patch works. E:\python-dev\py3kpy3k -m test.test_unicode_file test_directories (__main__.TestUnicodeFiles) ... ok test_single_files (__main__.TestUnicodeFiles) ... ok

[issue9830] Python 2.7 x64 not properly installed on Windows 7 (registry)

2010-09-11 Thread Marco Buccini
New submission from Marco Buccini marcu...@gmail.com: I've just installed Python 2.7 x86-64, on my 64-bit Windows 7, then I've tried to install some packages - such as setuptools and pyside - but a message during the installation said something like Cannot find Python2.7 in the windows

[issue9831] test_distutils fails on MacOSX 10.6

2010-09-11 Thread Ismail Donmez
New submission from Ismail Donmez ism...@namtrac.org: Using py3k branch revision 84707, on Mac OSX 10.6, case-sensitive HFS+ filesystem. == FAIL: test_package_data (distutils.tests.test_build_py.BuildPyTestCase)

[issue9832] test_unicodedata fails on MacOSX 10.6

2010-09-11 Thread Ismail Donmez
New submission from Ismail Donmez ism...@namtrac.org: Using py3k branch revision 84707, on Mac OSX 10.6, case-sensitive HFS+ filesystem. == FAIL: test_ucd_510 (test.test_unicodedata.UnicodeMiscTest)

[issue9833] test_ttk_guionly fails on MacOSX 10.6

2010-09-11 Thread Ismail Donmez
New submission from Ismail Donmez ism...@namtrac.org: Using py3k branch revision 84707, on Mac OSX 10.6, case-sensitive HFS+ filesystem. == ERROR: test_tab_identifiers (tkinter.test.test_ttk.test_widgets.NotebookTest)

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

2010-09-11 Thread Baptiste Carvello
Baptiste Carvello baptiste...@free.fr added the comment: Hello, I just tried your patch on latest svn (r84707), but I found out that the problem I reported can no more be reproduced. First, '_locale' seems now to be built earlier. Also, a fallback has been introduced in

[issue9827] Clarify LogRecord documentation

2010-09-11 Thread Vinay Sajip
Vinay Sajip vinay_sa...@yahoo.co.uk added the comment: Chris, thanks for the patch. I applied it to release27-maint and py3k branches with only minor changes (listed attributes in alphabetical order, and expanded on getMessage a bit). -- resolution: - fixed status: open - closed

[issue9632] Remove sys.setfilesystemencoding()

2010-09-11 Thread Marc-Andre Lemburg
Marc-Andre Lemburg m...@egenix.com added the comment: STINNER Victor wrote: STINNER Victor victor.stin...@haypocalc.com added the comment: I didn't proposed to add a new parameter to Py_InitializeEx() (which means create a new function to not break the API), I just wrote that

[issue9832] test_unicodedata fails on MacOSX 10.6

2010-09-11 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: Did you run `make distclean` before? -- assignee: - ronaldoussoren components: +Macintosh nosy: +flox, ronaldoussoren stage: - unit test needed ___ Python tracker rep...@bugs.python.org

[issue9832] test_unicodedata fails on MacOSX 10.6

2010-09-11 Thread Ismail Donmez
Ismail Donmez ism...@namtrac.org added the comment: Yes I did make distclean before building (to cleanup old build files). -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9832 ___

[issue9834] PySequence_GetSlice() lacks a NULL check

2010-09-11 Thread Stefan Behnel
New submission from Stefan Behnel sco...@users.sourceforge.net: PySequence_GetSlice() in Objects/abstract.c contains the following code: mp = s-ob_type-tp_as_mapping; if (mp-mp_subscript) { This crashes when the type's tp_as_mapping is NULL. The obvious fix is to simply write if

[issue9835] ZipFile unix external attributes incorrect for entry written with writestr

2010-09-11 Thread Thomas Sondergaard
New submission from Thomas Sondergaard tho...@sondergaard.cc: For entries written with writestr ZipFile doesn't record the file type in the unix external attributes block. It should set it to regular file (S_IFREG). The attached sample creates a zip file. If you inspect it with zipinfo -v, you

[issue9819] TESTFN_UNICODE and TESTFN_UNDECODABLE

2010-09-11 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: Thank you, your patch works. Ok, patch commited to 3.2 as r84710. Thanks for your feedback. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9819

[issue9836] Refleak in PyUnicode_FormatV

2010-09-11 Thread Hirokazu Yamamoto
New submission from Hirokazu Yamamoto ocean-c...@m2.ccsnet.ne.jp: I noticed following refleak. http://mail.python.org/pipermail/python-checkins/2010-September/097438.html py3k results for svn r84704 (hg cset 4ffcca0d1896) -- test_unicode leaked

[issue9836] Refleak in PyUnicode_FormatV

2010-09-11 Thread Hirokazu Yamamoto
Changes by Hirokazu Yamamoto ocean-c...@m2.ccsnet.ne.jp: -- keywords: +patch Added file: http://bugs.python.org/file18847/py3k_fix_PyUnicode_Format.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9836

[issue9836] Refleak in PyUnicode_FormatV

2010-09-11 Thread Hirokazu Yamamoto
Changes by Hirokazu Yamamoto ocean-c...@m2.ccsnet.ne.jp: -- versions: -Python 3.1 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9836 ___ ___

[issue9829] Unexpected Fraction.from_float() Behavior

2010-09-11 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: Please read about floating point arithmetic in the tutorial: http://docs.python.org/tutorial/floatingpoint.html Also observe that this works: Fraction(Decimal('1.23')) Fraction(123, 100) So yes, it is a limitation in how

[issue9830] Python 2.7 x64 not properly installed on Windows 7 (registry)

2010-09-11 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: That bug (the link works fine for me) leads to this bug: Issue6792. Closing this one as duplicate. -- nosy: +r.david.murray resolution: - duplicate status: open - closed superseder: - Distutils-based installer does not detect

[issue9835] ZipFile unix external attributes incorrect for entry written with writestr

2010-09-11 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: I'm not very familiar with zipfile, but my immediate reaction is, why should it? It can't know that the file is a unix file, and indeed if the program is running on windows it may not be. Perhaps instead there's something missing in

[issue9832] test_unicodedata fails on MacOSX 10.6

2010-09-11 Thread Ismail Donmez
Ismail Donmez ism...@namtrac.org added the comment: Btw I configured with; ./configure --with-wctype-functions --with-fpectl --with-wide-unicode --with-computed-gotos --enable-ipv6 --with-universal-archs=64-bit MACOSX_DEPLOYMENT_TARGET=10.6 -- ___

[issue9831] test_distutils fails on MacOSX 10.6

2010-09-11 Thread Ismail Donmez
Ismail Donmez ism...@namtrac.org added the comment: Btw I configure with; ./configure --with-wctype-functions --with-fpectl --with-wide-unicode --with-computed-gotos --enable-ipv6 --with-universal-archs=64-bit MACOSX_DEPLOYMENT_TARGET=10.6 -- ___

[issue9833] test_ttk_guionly fails on MacOSX 10.6

2010-09-11 Thread Ismail Donmez
Ismail Donmez ism...@namtrac.org added the comment: Btw I configured with; ./configure --with-wctype-functions --with-fpectl --with-wide-unicode --with-computed-gotos --enable-ipv6 --with-universal-archs=64-bit MACOSX_DEPLOYMENT_TARGET=10.6 -- ___

[issue9832] test_unicodedata fails on MacOSX 10.6

2010-09-11 Thread Florent Xicluna
Changes by Florent Xicluna florent.xicl...@gmail.com: -- nosy: +michael.foord, ned.deily ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9832 ___

[issue9833] test_ttk_guionly fails on MacOSX 10.6

2010-09-11 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: This is a duplicate of #8445 -- nosy: +flox resolution: - duplicate status: open - closed superseder: - buildbot: test_ttk_guionly failures (test_traversal, test_tab_identifiers, test_identify, test_heading_callback)

[issue8445] buildbot: test_ttk_guionly failures (test_traversal, test_tab_identifiers, test_identify, test_heading_callback)

2010-09-11 Thread Florent Xicluna
Changes by Florent Xicluna florent.xicl...@gmail.com: -- assignee: - ronaldoussoren components: +Macintosh nosy: +cartman, flox, ronaldoussoren stage: - needs patch type: - behavior ___ Python tracker rep...@bugs.python.org

[issue9831] test_distutils fails on MacOSX 10.6

2010-09-11 Thread Florent Xicluna
Changes by Florent Xicluna florent.xicl...@gmail.com: -- assignee: - tarek components: +Distutils, Macintosh nosy: +eric.araujo, michael.foord, ned.deily, tarek ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9831

[issue9835] ZipFile unix external attributes incorrect for entry written with writestr

2010-09-11 Thread Thomas Sondergaard
Thomas Sondergaard tho...@sondergaard.cc added the comment: It does know that the entry is a regular file, and that is the bit of information that is missing in the unix external file attributes. Having said that you do have a point - perhaps it shouldn't record unix external file attributes

[issue8448] buildbot: test_subprocess failure (test_no_leaking, Broken pipe)

2010-09-11 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: It still happens on the same builder, occasionally. http://www.python.org/dev/buildbot/builders/sparc%20Debian%203.1/builds/24 -- components: +Tests nosy: +flox type: - behavior ___

[issue9834] PySequence_GetSlice() lacks a NULL check

2010-09-11 Thread Benjamin Peterson
Benjamin Peterson benja...@python.org added the comment: r84714 -- nosy: +benjamin.peterson resolution: - fixed status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9834 ___

[issue8589] test_warnings.CEnvironmentVariableTests.test_nonascii fails under an ascii terminal

2010-09-11 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: Still happens with r84709 on PPC Tiger 3.x == FAIL: test_nonascii (test.test_warnings.CEnvironmentVariableTests)

[issue9836] Refleak in PyUnicode_FormatV

2010-09-11 Thread Antoine Pitrou
Changes by Antoine Pitrou pit...@free.fr: -- assignee: - haypo nosy: +haypo ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9836 ___ ___

[issue8746] os.chflags() and os.lchflags() are not built when they should be be

2010-09-11 Thread Garrett Cooper
Garrett Cooper yaneg...@gmail.com added the comment: I'll add new tests in the next submit for the bug, but here's the code to add the relevant symbols for common to *BSD and OSX, and the Snow Leopard+ and FreeBSD specific chflags of importance for python 2.7 and py3k. -- Added file:

[issue8746] os.chflags() and os.lchflags() are not built when they should be be

2010-09-11 Thread Garrett Cooper
Changes by Garrett Cooper yaneg...@gmail.com: Added file: http://bugs.python.org/file18849/issue8746-py3k.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8746 ___

[issue8746] os.chflags() and os.lchflags() are not built when they should be be

2010-09-11 Thread Garrett Cooper
Garrett Cooper yaneg...@gmail.com added the comment: Do you prefer exhaustive tests, or just smoke tests? Honestly IMO, the OS should come prepackaged with tests to ensure that things function according to the requirements set forth in the manpage, so I would prefer the latter because the os

[issue5729] Allows tabs for indenting JSON output

2010-09-11 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: Is this merge going to happen before 3.2 beta? -- nosy: +r.david.murray ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5729 ___

[issue6114] distutils build_ext path comparison only based on strings

2010-09-11 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: The three ppl mentioned there found and fixed the problem, that's why. The real question behind the joke was: Are you part of the same community? Where does this fix come from? But back to the issue: Can we use a switch or wrapper function to

[issue8373] socket: AF_UNIX socket paths not handled according to PEP 383

2010-09-11 Thread David Watson
David Watson bai...@users.sourceforge.net added the comment: Updated the patches for Python 3.2 - these are now simpler as they do not support bytearray arguments, as these are no longer used for filenames (the existing code does not support bytearrays either). I've put the docs and tests in

[issue8373] socket: AF_UNIX socket paths not handled according to PEP 383

2010-09-11 Thread David Watson
Changes by David Watson bai...@users.sourceforge.net: Added file: http://bugs.python.org/file18851/af_unix-pep383-3.2-with-linux-unterminated.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8373

[issue8373] socket: AF_UNIX socket paths not handled according to PEP 383

2010-09-11 Thread David Watson
Changes by David Watson bai...@users.sourceforge.net: Added file: http://bugs.python.org/file18852/af_unix-pep383-3.2-without-linux-unterminated.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8373

[issue8372] socket: Buffer overrun while reading unterminated AF_UNIX addresses

2010-09-11 Thread David Watson
David Watson bai...@users.sourceforge.net added the comment: I've updated the PEP 383 patches at issue #8373 with separate versions for if the linux-pass-unterminated patch is applied or not. If it's not essential to have unit tests for the overrun issue, I'd suggest applying just the

[issue9827] Clarify LogRecord documentation

2010-09-11 Thread Chris Leary
Chris Leary christopher.le...@cornell.edu added the comment: Okay, neat! I put them in that order so that they would correspond to the parameters to ``LogRecord.__init__`` -- do we usually do alphabetical instead? -- ___ Python tracker

[issue9608] Re-phrase best way of using exceptions in doanddont.rst

2010-09-11 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: Committed in r84719 and r84720, backported to 2.7 in r84721 with the addition of a sentence admitting that sometimes you need a bare except to catch third-party exceptions that don't inherit from Exception. -- resolution: -

[issue9827] Clarify LogRecord documentation

2010-09-11 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Vinay, would you mind adding references to the commits (in the form “rNNN”) so that roundup makes a link? Thanks in advance. Also, is this not fixed in 3.1? -- nosy: +eric.araujo ___ Python tracker

[issue8373] socket: AF_UNIX socket paths not handled according to PEP 383

2010-09-11 Thread David Watson
David Watson bai...@users.sourceforge.net added the comment: One of the tests got broken by the removal of sys.setfilesystemencoding(). Replaced it. -- Added file: http://bugs.python.org/file18853/af_unix-pep383-docs-tests-3.2-2.diff ___ Python

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

2010-09-11 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: For the person wanting to make a patch: Beware that the abstract collections.Sequence.index method does not support the start and stop arguments, even though concrete methods may (list.index, tuple.index and str.index for example). --

[issue9210] remove --with-wctype-functions configure option

2010-09-11 Thread Georg Brandl
Georg Brandl ge...@python.org added the comment: I would say, go ahead and apply for 3.2. -- nosy: +georg.brandl priority: normal - critical ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9210

[issue9210] remove --with-wctype-functions configure option

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

[issue5729] Allows tabs for indenting JSON output

2010-09-11 Thread Georg Brandl
Georg Brandl ge...@python.org added the comment: That would be nice. -- nosy: +georg.brandl ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5729 ___

[issue9213] range purports to implement the Sequence ABC, but is missing index and count methods

2010-09-11 Thread Georg Brandl
Georg Brandl ge...@python.org added the comment: I'd like to have this in 3.2. -- nosy: +georg.brandl priority: high - critical ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9213 ___

[issue9824] SimpleCookie should escape commas and semi-colons

2010-09-11 Thread Georg Brandl
Georg Brandl ge...@python.org added the comment: I will have a look at this, it looks like it could at least use a few tests. -- assignee: - georg.brandl nosy: +georg.brandl priority: normal - critical ___ Python tracker rep...@bugs.python.org

[issue9318] Py3k compilation on old MSVC

2010-09-11 Thread Georg Brandl
Georg Brandl ge...@python.org added the comment: I agree. -- nosy: +georg.brandl resolution: - accepted ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9318 ___

[issue9054] pyexpat configured with --with-system-expat is incompatible with expat 2.0.1

2010-09-11 Thread Georg Brandl
Georg Brandl ge...@python.org added the comment: Raising priority. -- nosy: +georg.brandl priority: normal - critical ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9054 ___

[issue5729] Allows tabs for indenting JSON output

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

[issue1467929] %-formatting and dicts

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

[issue9832] test_unicodedata fails on MacOSX 10.6

2010-09-11 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: According to issue #9210, --with-wctype-functions is pending removal. Could you retry without this switch? -- nosy: +amaury.forgeotdarc, lemburg superseder: - remove --with-wctype-functions configure option

[issue1475523] gettext breaks on plural-forms header

2010-09-11 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Could you follow the guidelines at http://www.python.org/dev/patches/ to create patches? Thanks in advance. I wonder why you call tearDown from setUp. Doesn’t unittest do that for you when there is a failure in setUp? Also, you could use a

[issue6792] Distutils-based installer does not detect 64bit versions of Python

2010-09-11 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Removing 2.6 which only gets security fixes now. -- nosy: +eric.araujo versions: +Python 3.1 -Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6792

[issue9826] OrderedDict ref cycles break repr()

2010-09-11 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- nosy: +eric.araujo stage: - needs patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9826 ___ ___

[issue9318] Py3k compilation on old MSVC

2010-09-11 Thread Hirokazu Yamamoto
Hirokazu Yamamoto ocean-c...@m2.ccsnet.ne.jp added the comment: Thank you, fixed in r84724(py3k). -- assignee: ocean-city - resolution: accepted - fixed stage: patch review - committed/rejected status: open - closed versions: -Python 3.1 ___ Python

[issue9825] OrderedDict ref cycles cause memory leak

2010-09-11 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: On #python-dev, Raymond, Amaury and Benjamin agreed that __del__ should be removed, with the rationale that this method should be used to release resources other than memory. -- nosy: +eric.araujo

[issue9818] build files to build Lib/distutils/command/wininst-9.0* are missing

2010-09-11 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- nosy: +eric.araujo, loewis, tarek ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9818 ___ ___

[issue9817] expat copyright/license file is missing

2010-09-11 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: I don’t see a reason not to include this file. Where would you like to put it? In Modules/expat? -- nosy: +eric.araujo ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9817

[issue9815] test_tarfile sometimes ends with error Cannot remove dir

2010-09-11 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Just to be sure: Have you checked this bug doesn’t apply to 2.7? Can you add a regression test? -- nosy: +eric.araujo title: test_tarfile sometimes ends with error Cannot remoe dir - test_tarfile sometimes ends with error Cannot remove

[issue9814] subprocess isn't friendly to other Python implementations with different GCs

2010-09-11 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: I think all developers agree that we should play nice with all VMs. Do you want to make patches for these problems? -- nosy: +astrand, eric.araujo stage: - needs patch versions: +Python 2.7, Python 3.1, Python 3.2

[issue9811] strftime strips '%' from unknown format codes on OS X

2010-09-11 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: I think supporting different specifiers is one thing, dropping the % character is another. This is how I understand the bug report. -- nosy: +eric.araujo ___ Python tracker rep...@bugs.python.org

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

2010-09-11 Thread Matthew Barnett
Matthew Barnett pyt...@mrabarnett.plus.com added the comment: issue2636-20100912.zip is a new version of the regex module. More speedups. I've been comparing the speed against Perl wherever possible. In some cases Perl is lightning fast, probably because regex is built into the language and

[issue9810] bzip2 build sometimes fails (VS8.0)

2010-09-11 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- nosy: +brian.curtin, loewis, tim.golden ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9810 ___ ___

[issue9806] no need to try loading posix extensions without SOABI

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

[issue9779] argparse.ArgumentParser not support unicode in print help

2010-09-11 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Do the docs say this should be supported? I’m a die-hard unicode user, but this treads the line between fix and feature, so if the docs don’t restrict help to str, this could be fixed, otherwise we’re out of luck for the 2.x series.

[issue9765] tcl-8 vs tcl8

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

[issue9825] OrderedDict ref cycles cause memory leak

2010-09-11 Thread Raymond Hettinger
Raymond Hettinger rhettin...@users.sourceforge.net added the comment: Éric, I've got this one. Thx. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9825 ___

[issue9728] Docs point to FAQ Section 3, but FAQs are not numbered

2010-09-11 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: I tried to find the old FAQ in the Debian package for 2.5 but failed. It looks like this require a fair bit of version control exploration. -- nosy: +eric.araujo ___ Python tracker

[issue6672] Add Mingw recognition to pyport.h to allow building extensions

2010-09-11 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: A tip about versions: Bugs are fixed on the active branch, py3k (which will become 3.2), then backported to 3.1 and 2.7. Security fixes go into 2.5 and 2.6 too. -- nosy: +brian.curtin, eric.araujo, jlt63, tim.golden

[issue9759] GzipFile object should raise ValueError on .read() after .close()

2010-09-11 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Should this be fixed in 3.1 and 2.7 too? -- nosy: +eric.araujo ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9759 ___

[issue9756] Crash with custom __getattribute__

2010-09-11 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- nosy: +eric.araujo versions: -Python 2.5, Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9756 ___

[issue9751] _PyInstance_Lookup() defeats its purpose

2010-09-11 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: It’s not clear whether you want a doc fix or a behavior change. -- nosy: +eric.araujo ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9751 ___

[issue9608] Re-phrase best way of using exceptions in doanddont.rst

2010-09-11 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Nice, thanks! -- resolution: fixed - stage: committed/rejected - patch review status: closed - open ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9608

[issue9608] Re-phrase best way of using exceptions in doanddont.rst

2010-09-11 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- resolution: - fixed stage: patch review - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9608 ___

[issue9811] strftime strips '%' from unknown format codes on OS X

2010-09-11 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: But if it is a bug, it is a bug in OS/X, not in Python. Python could potentially fix it for python programs by providing our own strftime, but until someone does that the best we can do is a doc mention of this platform quirk.

[issue9824] SimpleCookie should escape commas and semi-colons

2010-09-11 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Thanks for forwarding this upstream. A tip about Python versions: Bugs are fixed on the active branch, py3k (which will become 3.2), then backported to 3.1 and 2.7. Security fixes go into 2.5 and 2.6 too. 3.3 means that something won’t make

[issue9811] strftime strips '%' from unknown format codes on OS X

2010-09-11 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Ah, I understand your first reply now. Thanks. Agreed on all your points. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9811 ___

[issue9750] sqlite3 iterdump fails on column with reserved name

2010-09-11 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Thank you for the report and patch. Some bug tracker tips: 1) It’s possible to replace a file, so that there is always one bug.py and one diff, which is easier for reviewers to understand than a long list of files (possibly all with the same

[issue4359] at runtime, distutils uses buildtime files

2010-09-11 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: #9807 has been recently opened. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4359 ___ ___

[issue9213] range purports to implement the Sequence ABC, but is missing index and count methods

2010-09-11 Thread Daniel Stutzbach
Daniel Stutzbach dan...@stutzbachenterprises.com added the comment: Thanks, Georg, for prodding. As a new committer, I have possibly been erring a little too far on the side of having my patches thoroughly reviewed before committing. I'll commit the patch on Monday if no one raises

[issue9832] test_unicodedata fails on MacOSX 10.6

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

[issue9825] OrderedDict ref cycles cause memory leak

2010-09-11 Thread Raymond Hettinger
Raymond Hettinger rhettin...@users.sourceforge.net added the comment: For 2.7, removed __del__ in r84725. For 3.2, replaced __del__ with weakrefs in r84727. -- resolution: - fixed status: open - closed ___ Python tracker rep...@bugs.python.org

[issue1538778] pyo's are not overwritten by different optimization levels

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

[issue9831] test_distutils fails on MacOSX 10.6

2010-09-11 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Thank you for the report. Can you apply this change and paste the new, more useful output? -self.assertTrue(__init__.pyc in files) +self.assertIn(__init__.pyc, files) -- ___ Python tracker

[issue9815] test_tarfile sometimes ends with error Cannot remove dir

2010-09-11 Thread Hirokazu Yamamoto
Hirokazu Yamamoto ocean-c...@m2.ccsnet.ne.jp added the comment: I created separate small test case to reproduce, and I tried it on Python2.7, I couldn't reproduce the issue. And tried it on Python3.1, I couldn't there neither. (Sorry about that... I included 3.1 in version box) And exception

[issue9826] OrderedDict ref cycles break repr()

2010-09-11 Thread Raymond Hettinger
Raymond Hettinger rhettin...@users.sourceforge.net added the comment: Fixed in r84728 and r84729. Will backport to 2.7 shortly. -- resolution: - fixed status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9826