[issue1019715] distutils ignores configure's --includedir

2010-08-10 Thread Éric Araujo
Changes by Éric Araujo : -- superseder: -> Use directories from configure rather than hardcoded ___ Python tracker ___ ___ Python-b

[issue1294959] Problems with /usr/lib64 builds.

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

[issue9558] build_ext fails on VS8.0

2010-08-10 Thread Hirokazu Yamamoto
Hirokazu Yamamoto added the comment: > Does test_build_ext pass? Here are results. py26 is calling python_d.exe built with VS8.0. I installed VS8.0 very recently, so I'm not familier with historical reason. ;-) # Translate error message into English... # LINK : fatal error LNK1104: cannot open

[issue7175] unify pydistutils.cfg and distutils.cfg and use .local

2010-08-10 Thread Éric Araujo
Éric Araujo added the comment: FWIW, I’m no longer strongly advocating using $XDG_CONFIG_HOME, since it seems to have little acceptance outside of graphical applications. Using it *or* ~/.python (or ~/.pythonx.y) would work for me. Since this seems like a big change for no benefit in distutil

[issue9558] build_ext fails on VS8.0

2010-08-10 Thread Éric Araujo
Éric Araujo added the comment: Digging into the history of build_ext, I see that you committed a fix for VC 6 two years ago, so I think you’re more knowledgeable than me. I’m adding a Windows expert for confirmation. Going back to 2007 finds the origin of the line you’re editing: “[svn r59290

[issue9558] build_ext fails on VS8.0

2010-08-10 Thread Hirokazu Yamamoto
Hirokazu Yamamoto added the comment: Yes, I can confirm the same bug on Python3.2 and others. The reason is LIBPATH includes not "PC/VS8.0" but "PC/VS8.0/win32release" which doesn't exist. I hope attached patch will fix this issue. -- ___ Python tr

[issue9558] build_ext fails on VS8.0

2010-08-10 Thread Éric Araujo
Éric Araujo added the comment: Thank you for the report. “release blocker” is a bit strong here, usually it’s set by release managers themselves or by people having their agreement (unless I’m mistaken). Does “python -m distutils.test.test_build_ext” pass? Do yo have tested your bug with rec

[issue9561] distutils: set encoding to utf-8 for input and output files

2010-08-10 Thread Éric Araujo
Éric Araujo added the comment: There are different kind of files created by write_file: - PKG-INFO (METADATA in distutil2), that already uses a trick to support Unicode, but your change would replace it in a better way; - MANIFEST, which with your fix would gain the ability to handle non-ASCI

[issue9553] test_argparse.py: 80 failures if COLUMNS env var set to a value other than 80

2010-08-10 Thread Denver Coneybeare
Denver Coneybeare added the comment: That is a very good point, bethard, that setting os.environ["COLUMNS"] in my suggested patch (test_argparse.py.COLUMNS.patch) is global and should be test-local. I've attached an updated patch (test_argparse.py.COLUMNS.update1.patch) which uses setUp() an

[issue9446] urllib2 tests fail when offline

2010-08-10 Thread Senthil Kumaran
Senthil Kumaran added the comment: Yes, confirmed it in release27 branch. Gaierror is returned when tests are run offline. -- assignee: -> orsenthil resolution: -> accepted ___ Python tracker ___

[issue9567] Add attribute pointing to wrapped function in functools.update_wrapper

2010-08-10 Thread Nick Coghlan
Changes by Nick Coghlan : -- title: Add attribute pointing to wrapped function to partial objects -> Add attribute pointing to wrapped function in functools.update_wrapper ___ Python tracker ___

[issue9567] Add attribute pointing to wrapped function to partial objects

2010-08-10 Thread Nick Coghlan
Nick Coghlan added the comment: python-dev thread: http://mail.python.org/pipermail/python-dev/2010-August/102988.html -- ___ Python tracker ___

[issue9567] Add attribute pointing to wrapped function to partial objects

2010-08-10 Thread Nick Coghlan
Changes by Nick Coghlan : -- assignee: -> ncoghlan nosy: +ncoghlan ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscrib

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

2010-08-10 Thread Éric Araujo
Éric Araujo added the comment: After discussion with RDM on IRC, I’m opening a new report to track this feature request separately. (It’s also a dependency of this bug.) -- assignee: r.david.murray -> rhettinger dependencies: +Add attribute pointing to wrapped function to partial objec

[issue9567] Add attribute pointing to wrapped function to partial objects

2010-08-10 Thread Éric Araujo
New submission from Éric Araujo : Raymond in #9396: “I was just about to propose that functools.wraps add a standard attribute to point at the underlying function (on the theory that objects should be introspectable). This would allow a standard way to get to the underlying unwrapped functio

[issue7950] subprocess.Popen documentation should contain a good warning about the security implications when using shell=True

2010-08-10 Thread R. David Murray
R. David Murray added the comment: Chris, thank you for the patch, sorry I didn't acknowledge it earlier. I think the core of the patch is good, though I will probably drop the text starting from "To safely use..." when I get time to apply it. I will also add a note along the lines of "this

[issue9253] argparse: optional subparsers

2010-08-10 Thread Éric Araujo
Éric Araujo added the comment: Wow, it is late. I wanted to write: New features don’t go into stable branches. -- ___ Python tracker ___ _

[issue9563] optparse: bad exception handling when giving no value to an option requiring one

2010-08-10 Thread R. David Murray
R. David Murray added the comment: Thanks for the confirmation. -- resolution: -> out of date stage: unit test needed -> committed/rejected status: open -> closed ___ Python tracker ___

[issue9253] argparse: optional subparsers

2010-08-10 Thread Éric Araujo
Éric Araujo added the comment: Stable releases don’t go into stable branches, so I’m editing versions. I also remove 3.3 since it doesn’t exist now, it means “this won’t go in 3.2”. -- nosy: +merwok versions: -Python 2.7, Python 3.3 ___ Python trac

[issue2443] Define Py_VA_COPY macro as a cross-platform replacement for gcc __va_copy

2010-08-10 Thread Alexander Belopolsky
Changes by Alexander Belopolsky : -- assignee: -> belopolsky nosy: -Alexander.Belopolsky ___ Python tracker ___ ___ Python-bugs-list

[issue665761] reduce() masks exception

2010-08-10 Thread Alexander Belopolsky
Changes by Alexander Belopolsky : Added file: http://bugs.python.org/file18472/issue665761-py3k.diff ___ Python tracker ___ ___ Python-bugs-l

[issue9566] Compilation warnings under x64 Windows

2010-08-10 Thread Martin v . Löwis
Martin v. Löwis added the comment: This must be a duplicate report - this issue has been known for years, and Kristjan and others (including myself) volunteered to work on it, and did actually work on it. I don't think it's necessary to have a bug report in the bug tracker for it. If you fin

[issue9566] Compilation warnings under x64 Windows

2010-08-10 Thread Antoine Pitrou
New submission from Antoine Pitrou : A 64-bit build under Windows produces many compilation warnings, mostly related to lossy conversions between different int sizes. Some of these warnings appear harmless after analysis (are MS 64 bit compilers pickier than their 32 bit counterparts?). It woul

[issue9433] regrtest.py -j 2 doesn't work on Windows: remove close_fds=True on Windows

2010-08-10 Thread Antoine Pitrou
Antoine Pitrou added the comment: Possible patch (checked to work in a Windows 7 VM): Index: Lib/test/regrtest.py === --- Lib/test/regrtest.py(révision 83938) +++ Lib/test/regrtest.py(copie de travail) @@ -547,7 +54

[issue9563] optparse: bad exception handling when giving no value to an option requiring one

2010-08-10 Thread Gwendal LE BIHAN
Gwendal LE BIHAN added the comment: I confirm. Fixed in Python 2.7. I didn't have Python 2.7 installed since it's not in the Ubuntu repository yet. -- ___ Python tracker ___

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

2010-08-10 Thread Raymond Hettinger
Raymond Hettinger added the comment: Great minds think alike. I was just about to propose that functools.wraps add a standard attribute to point at the underlying function (on the theory that objects should be introspectable). This would allow a standard way to get to the underlying unwrapp

[issue9565] socket : accept() method not working

2010-08-10 Thread R. David Murray
R. David Murray added the comment: The bug tracker is not the place to get help in learning how to do socket programming, I'm afraid. Try the python-list or python-tutor mailing lists, or #python on freenode IRC. -- nosy: +r.david.murray resolution: -> invalid stage: -> committed/r

[issue9563] optparse: bad exception handling when giving no value to an option requiring one

2010-08-10 Thread R. David Murray
R. David Murray added the comment: 2.6 no longer receives bug fixes now that 2.7 is out. Is this still a problem in 2.7? (My testing indicates that it isn't.) -- nosy: +r.david.murray stage: -> unit test needed ___ Python tracker

[issue9565] socket : accept() method not working

2010-08-10 Thread Hasan
New submission from Hasan : hi, i am use the socket module in python. But accept() method not working and its not give me an error about this problem. for example i run the my scipt. When it comes to accept() method line, python is locks. i use the ubuntu os. and python 2.6.5 pls, help me.

[issue8834] Define order of Misc/ACKS entries

2010-08-10 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: Committed in r83937 (py3k) and r83938 (release31-maint). The py3k version is now a superset of the lists in the maintenance branches. I don't want to generate any more commit traffic by bringing all branches in sync. I'll leave it to the next committe

[issue9556] Specifying the time a TimedRotatingFileHandler rotates

2010-08-10 Thread Éric Araujo
Éric Araujo added the comment: Adding the logging maintainer to nosy. (BTW Vinay, Misc/maintainers.rst says your roundup name is “vsajip”) -- nosy: +merwok, vinay.sajip ___ Python tracker _

[issue1626300] 'Installing Python Modules' does not work for Windows

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

[issue9553] test_argparse.py: 80 failures if COLUMNS env var set to a value other than 80

2010-08-10 Thread Eric Smith
Eric Smith added the comment: I agree with Steven: for the current tests we should specify (and restore) 80 columns. We might want to add additional tests at different column widths. -- ___ Python tracker

[issue9553] test_argparse.py: 80 failures if COLUMNS env var set to a value other than 80

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

[issue3532] bytes.tohex method

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

[issue9564] Test issue.

2010-08-10 Thread Mark Dickinson
Mark Dickinson added the comment: Looks good. -- resolution: -> invalid status: open -> closed ___ Python tracker ___ ___ Python-bugs

[issue9564] Test issue.

2010-08-10 Thread Mark Dickinson
New submission from Mark Dickinson : Testing autonosy. Please close as invalid. -- assignee: tarek components: Distutils messages: 113562 nosy: mark.dickinson, merwok, tarek priority: normal severity: normal status: open title: Test issue. ___ Pytho

[issue8526] msilib doesn't support multiple CAB instances in same installer

2010-08-10 Thread Martin v . Löwis
Changes by Martin v. Löwis : -- keywords: -easy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyt

[issue7335] int/long discrepancy when formatting zero with "%.0d"

2010-08-10 Thread Mark Dickinson
Mark Dickinson added the comment: Out of date for 2.x. -- resolution: -> out of date status: open -> closed ___ Python tracker ___ __

[issue9563] optparse: bad exception handling when giving no value to an option requiring one

2010-08-10 Thread Gwendal LE BIHAN
Changes by Gwendal LE BIHAN : -- title: bad exception handling when giving no value to an option requiring one -> optparse: bad exception handling when giving no value to an option requiring one ___ Python tracker

[issue9563] bad exception handling when giving no value to an option requiring one

2010-08-10 Thread Gwendal LE BIHAN
New submission from Gwendal LE BIHAN : Having created the parser this way: optparser=OptionParser() optparser.add_option("--share-dir",dest="share_dir",default="/usr/share") options,args=optparser.parse_args() And calling the program this way: appname --share-dir I get the following exception

[issue8411] New GIL: improve condition variable emulation on NT

2010-08-10 Thread Kristján Valur Jónsson
Kristján Valur Jónsson added the comment: Great. I hope you agree that it is simpler. I'm afraid my explanations can be somewhat long-winded so I hope you found a better way to document my "pseudo race condition". -- status: pending -> open ___ P

[issue9253] argparse: optional subparsers

2010-08-10 Thread Michael . Elsdörfer
Michael.Elsdörfer added the comment: To expand on my case from issue9540, I have a bunch of commands, each of which should enable a specific subset of options only available the individual command, but all of the commands share the same behavior in taking nargs='*' positional arguments: ./sc

[issue9562] Slightly misleading wording in documentation of dict.update

2010-08-10 Thread Mitchell Model
New submission from Mitchell Model : The documentation of dict.update says that it "accepts either another dictionary object or an iterable of key/value pairs (as a tuple or other iterable of length two)" The parenthesized phrase is slightly misleading in that it could be interpreted as requir

[issue9446] urllib2 tests fail when offline

2010-08-10 Thread Terry J. Reedy
Terry J. Reedy added the comment: I believe in our python-list discussion you identified the precise line that fails. Please copy it here. -- ___ Python tracker ___

[issue8821] Range check on unicode repr

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

[issue9559] mailbox.mbox creates new file when adding message to mbox

2010-08-10 Thread R. David Murray
Changes by R. David Murray : -- nosy: +akuchling versions: +Python 3.1, Python 3.2 ___ Python tracker ___ ___ Python-bugs-list mailing

[issue9530] integer undefined behaviors

2010-08-10 Thread Mark Dickinson
Mark Dickinson added the comment: Applied issue9530_1.patch in r83936. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Uns

[issue9526] 2 GB limit in array module

2010-08-10 Thread Mark Dickinson
Mark Dickinson added the comment: Thanks for confirming, Stefan. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue9560] platform.py: use -b option for file command in _syscmd_file()

2010-08-10 Thread Marc-Andre Lemburg
Marc-Andre Lemburg added the comment: STINNER Victor wrote: > > New submission from STINNER Victor : > > Lib/platform.py was created 7 years ago by r32391. _syscmd_file() docstring > was never changed whereas it is inconsistent with the implementation: > --- > def _syscmd_file(target,default=

[issue9561] distutils: set encoding to utf-8 for input and output files

2010-08-10 Thread STINNER Victor
New submission from STINNER Victor : While working on #9425 (support non-ascii characters in python directory name with ascii locale), I wrote a patch for distutils.file_util(): set encoding to utf-8 and errors to surrogateescape. See the patch with comments at: http://codereview.appspot.com/18

[issue9295] test_close_open_print_buffered(test_file) sometimes crashes

2010-08-10 Thread Florent Xicluna
Florent Xicluna added the comment: See the transient failures on "x86 XP-4" buildbot (2.6 and 2.7 only). Issue #9555 closed as duplicate: http://bugs.python.org/issue9555#msg113522 -- components: +Windows keywords: +buildbot nosy: +flox ___ Python t

[issue9555] transient crashes on "x86 XP-4" buildbot: test_file, test_file2k, test_bsddb3

2010-08-10 Thread Florent Xicluna
Florent Xicluna added the comment: Right, it looks like a duplicate. -- resolution: -> duplicate status: open -> closed superseder: -> test_close_open_print_buffered(test_file) sometimes crashes ___ Python tracker

[issue9560] platform.py: use -b option for file command in _syscmd_file()

2010-08-10 Thread STINNER Victor
New submission from STINNER Victor : Lib/platform.py was created 7 years ago by r32391. _syscmd_file() docstring was never changed whereas it is inconsistent with the implementation: --- def _syscmd_file(target,default=''): """ Interface to the system's file command. The function u

[issue1744382] Read Write lock

2010-08-10 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- resolution: -> later status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue9425] Rewrite import machinery to work with unicode paths

2010-08-10 Thread STINNER Victor
STINNER Victor added the comment: _PyFile_FromFdUnicode.patch: create _PyFile_FromFdUnicode() function. It will be used in import.c to open a file using an unicode filename. For _PyFile_FromFd(), I kept the previous behaviour: clear the exception on PyUnicode_DecodeFSDefault() error. For fil

[issue9559] mailbox.mbox creates new file when adding message to mbox

2010-08-10 Thread Chris Green
New submission from Chris Green : When you call mailbox.mbox.add() the old mbox file is copied, the new file is modified and then renamed to the name of the'old' mbox file. This breaks the way that many MUAs detect and manage new mail in an mbox, in particular I discovered this with mutt. If

[issue9425] Rewrite import machinery to work with unicode paths

2010-08-10 Thread STINNER Victor
Changes by STINNER Victor : Removed file: http://bugs.python.org/file18446/Py_UNICODE_strrchr.patch ___ Python tracker ___ ___ Python-bugs-list

[issue9425] Rewrite import machinery to work with unicode paths

2010-08-10 Thread STINNER Victor
STINNER Victor added the comment: I commited Py_UNICODE_strrchr.patch as r83933 after removing the useless start variable. -- ___ Python tracker ___

[issue9318] Py3k compilation on old MSVC

2010-08-10 Thread Hirokazu Yamamoto
Hirokazu Yamamoto added the comment: PC/pyconfig.h: no more needed. fixed in posixmodule.c Python/import.c: my patch was wrong. we should use _mkdir(const char*) on windows. there is deprecated function mkdir(const char*), but it doesn't take mode_t as parameter. so maybe it is unsafe to call wi

[issue8411] New GIL: improve condition variable emulation on NT

2010-08-10 Thread Hirokazu Yamamoto
Changes by Hirokazu Yamamoto : -- nosy: -ocean-city status: open -> pending ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue8411] New GIL: improve condition variable emulation on NT

2010-08-10 Thread Hirokazu Yamamoto
Changes by Hirokazu Yamamoto : -- status: pending -> open Removed message: http://bugs.python.org/msg113544 ___ Python tracker ___ ___

[issue7351] Documentation typos found in "zipfile — Work with ZIP archives"

2010-08-10 Thread Éric Araujo
Changes by Éric Araujo : -- resolution: fixed -> wont fix stage: -> committed/rejected ___ Python tracker ___ ___ Python-bugs-list mai

[issue7351] Documentation typos found in "zipfile — Work with ZIP archives"

2010-08-10 Thread Georg Brandl
Changes by Georg Brandl : -- status: pending -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://ma

[issue8411] New GIL: improve condition variable emulation on NT

2010-08-10 Thread Hirokazu Yamamoto
Changes by Hirokazu Yamamoto : -- status: open -> pending ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:/

[issue8411] New GIL: improve condition variable emulation on NT

2010-08-10 Thread Hirokazu Yamamoto
Hirokazu Yamamoto added the comment: This commit also fixed test_thread.py crash on win2000. Thanks! -- nosy: +ocean-city status: pending -> open ___ Python tracker ___ _

[issue5673] Add timeout option to subprocess.Popen

2010-08-10 Thread Pablo Bitton
Pablo Bitton added the comment: I reproduced the problem with the latest patch, subprocess-timeout-py3k-v7.patch, on py3k on Linux. Attached is the code to reproduce the problem and the resulting traceback. -- Added file: http://bugs.python.org/file18468/tcpdump error.txt ___

[issue9558] build_ext fails on VS8.0

2010-08-10 Thread Hirokazu Yamamoto
Hirokazu Yamamoto added the comment: Is *release blocker* too strong? -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsu

[issue9558] build_ext fails on VS8.0

2010-08-10 Thread Hirokazu Yamamoto
New submission from Hirokazu Yamamoto : test_build_ext fails on VS8.0. == ERROR: test_build_ext (distutils.tests.test_build_ext.BuildExtTestCase) -- Traceback

[issue5300] Distutils ignores file permissions

2010-08-10 Thread Éric Araujo
Changes by Éric Araujo : -- components: +Distutils2 -Distutils versions: +Python 2.5, Python 2.6, Python 3.2 ___ Python tracker ___ ___

[issue9295] test_close_open_print_buffered(test_file) sometimes crashes

2010-08-10 Thread Hirokazu Yamamoto
Hirokazu Yamamoto added the comment: - above patch + above script -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscr

[issue8411] New GIL: improve condition variable emulation on NT

2010-08-10 Thread Antoine Pitrou
Antoine Pitrou added the comment: Thanks Kristján, I've committed the patch with modified comments in r83932. Unfortunately, the Windows buildbots are in a wreck, so this won't be checked immediately (I only have a single-core XP VM under which the patch ran fine). -- assignee: -> pit

[issue9261] include higher (../../) dirs fails

2010-08-10 Thread Éric Araujo
Éric Araujo added the comment: I think disallowing .. is fine, so I’m assigning to myself to make sure I’ll take time later to check the docs. -- assignee: tarek -> merwok ___ Python tracker __

[issue9557] test_mailbox failure under a Windows VM

2010-08-10 Thread Antoine Pitrou
New submission from Antoine Pitrou : I get this failure in test_mailbox under Windows XP running in a qemu virtual machine: == FAIL: test_reread (test.test_mailbox.TestMaildir) --

[issue9295] test_close_open_print_buffered(test_file) sometimes crashes

2010-08-10 Thread Hirokazu Yamamoto
Hirokazu Yamamoto added the comment: I cannot crash python by above patch anymore... Strange. > Is test_close_open_print_buffered the only test that fails? It seem to be. Is freeing the memory allocated for setvbuf() while close() running in another thread really safe? -- _

[issue9421] configparser.ConfigParser's getint, getboolean and getfloat don't accept `vars`

2010-08-10 Thread Fred L. Drake, Jr.
Fred L. Drake, Jr. added the comment: Even I think the leading underscore screams "don't use this from outside, doofus!" -- ___ Python tracker ___ ___

[issue8688] distutils sdist is too laze w.r.t. recalculating MANIFEST

2010-08-10 Thread Tarek Ziadé
Tarek Ziadé added the comment: I like the idea of a marker in a comment line in the MANIFEST, we can introduce this as a bug fix to avoid this regression -- ___ Python tracker _

[issue9551] ConfigParser.SafeConfigParser.set fails when no value provided

2010-08-10 Thread Fred L. Drake, Jr.
Fred L. Drake, Jr. added the comment: Committed on the release27-maint branch as 83931. -- keywords: -needs review resolution: -> accepted status: open -> closed ___ Python tracker ___

[issue9555] transient crashes on "x86 XP-4" buildbot: test_file, test_file2k, test_bsddb3

2010-08-10 Thread Hirokazu Yamamoto
Hirokazu Yamamoto added the comment: Maybe is this duplicate of #9295? -- nosy: +ocean-city ___ Python tracker ___ ___ Python-bugs-lis

[issue8688] distutils sdist is too laze w.r.t. recalculating MANIFEST

2010-08-10 Thread Ronald Oussoren
Ronald Oussoren added the comment: I agree with msg113530 and msg112371 that the current behavior is a bug: distutils is now too agressive because it recalculates the MANIFEST file even when distutils isn't the one that calculated it in the first place. This is a functional regression w.r.t.

[issue8688] distutils sdist is too laze w.r.t. recalculating MANIFEST

2010-08-10 Thread J . David Ibáñez
J. David Ibáñez added the comment: This issue has broken our build system too. A bug has been fixed, but another one is open now. If the MANIFEST file has been produced by distutils it should be regenerated each time. But if it has not been produced by distutils then it should not regenerated

[issue9421] configparser.ConfigParser's getint, getboolean and getfloat don't accept `vars`

2010-08-10 Thread Łukasz Langa
Łukasz Langa added the comment: I am away from the computer at the moment but doing my best to reply. > - Using _UNSET & similar in the docs is not good; there used to be a > way to note a parameter as optional. Not sure whether there is any > more. I don't know where to look for something

[issue9549] Remove sys.setdefaultencoding()

2010-08-10 Thread Éric Araujo
Éric Araujo added the comment: Is it possible to add a deprecation warning in 2.7 too? If not, at least a recommendation not to use it in the 2.7 docs? I am willing to write one or two paragraphs to explain why it’s a terrible idea. -- nosy: +merwok __

[issue9556] Specifying the time a TimedRotatingFileHandler rotates

2010-08-10 Thread Ronald Oussoren
Changes by Ronald Oussoren : -- type: behavior -> feature request ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue9556] Specifying the time a TimedRotatingFileHandler rotates

2010-08-10 Thread Ronald Oussoren
New submission from Ronald Oussoren : The logging module contains a TimedRotatingFileHandler that automaticly rotates the logfile after a specified interval. This class misses an important feature: it is not possible to specify at what time the file should be rotated, unless that time is midni

[issue9553] test_argparse.py: 80 failures if COLUMNS env var set to a value other than 80

2010-08-10 Thread R. David Murray
R. David Murray added the comment: There's a handy utility for this in test.support: EnvironmentVarGuard. -- nosy: +r.david.murray ___ Python tracker ___

[issue8432] buildbot: test_send_signal of test_subprocess failure

2010-08-10 Thread STINNER Victor
STINNER Victor added the comment: > These tests exist and pass on 2.7 and 3.1. Ok. In r78946, for the pure Python implementation, I only see the restoration of the signals which can be related to this issue. -- ___ Python tracker

[issue9516] sysconfig: $MACOSX_DEPLOYMENT_TARGET mismatch: now "10.3" but "10.5" during configure

2010-08-10 Thread R. David Murray
Changes by R. David Murray : -- versions: -Python 3.3 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://ma

[issue1708316] doctest work with Windows PyReadline

2010-08-10 Thread Florent Xicluna
Changes by Florent Xicluna : -- components: +Windows ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://m

[issue9503] print statement hangs Windows service

2010-08-10 Thread Florent Xicluna
Changes by Florent Xicluna : -- components: +Windows ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue7405] compiling python 3.1.1 using cygwin 1.7.0 and gcc 4.3.4

2010-08-10 Thread Florent Xicluna
Changes by Florent Xicluna : -- components: +Windows ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue2233] Makefile.pre.in contains extra slash before $(DESTDIR) which can cause Cygwin build to fail

2010-08-10 Thread Florent Xicluna
Changes by Florent Xicluna : -- components: +Windows ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue5879] multiprocessing - example "pool of http servers " fails on windows "socket has no attribute fromfd"

2010-08-10 Thread Florent Xicluna
Changes by Florent Xicluna : -- components: +Windows ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue8548] Building on CygWin 1.7: PATH_MAX redefined

2010-08-10 Thread Florent Xicluna
Changes by Florent Xicluna : -- components: +Windows ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue8170] Wrong Paths for distutils build --plat-name=win-amd64

2010-08-10 Thread Florent Xicluna
Changes by Florent Xicluna : -- components: +Windows ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue8171] bdist_wininst builds wrongly for --plat-name=win-amd64

2010-08-10 Thread Florent Xicluna
Changes by Florent Xicluna : -- components: +Windows ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue4032] distutils cannot recognize ".dll.a" as library on cygwin

2010-08-10 Thread Florent Xicluna
Changes by Florent Xicluna : -- components: +Windows ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue9116] test_capi.test_no_FatalError_infinite_loop crash on Windows

2010-08-10 Thread Florent Xicluna
Changes by Florent Xicluna : -- components: +Windows ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue1626300] 'Installing Python Modules' does not work for Windows

2010-08-10 Thread Florent Xicluna
Changes by Florent Xicluna : -- assignee: -> d...@python components: +Windows nosy: +d...@python ___ Python tracker ___ ___ Python-

[issue1173134] improvement of the script adaptation for the win32 platform

2010-08-10 Thread Florent Xicluna
Changes by Florent Xicluna : -- assignee: -> tarek components: +Windows nosy: +tarek ___ Python tracker ___ ___ Python-bugs-list ma

  1   2   >