[issue1244861] Enable os.startfile and webbrowser.WindowsDefault on Cygwin

2010-08-21 Thread Mark Lawrence
Mark Lawrence added the comment: Any Cygwin person interested in taking this forward? -- nosy: +BreamoreBoy stage: unit test needed -> patch review versions: +Python 3.2 -Python 2.7 ___ Python tracker __

[issue9251] Test for the import lock

2010-08-21 Thread Antoine Pitrou
Antoine Pitrou added the comment: Ping? -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[issue9657] Add circular imports test

2010-08-21 Thread Antoine Pitrou
New submission from Antoine Pitrou : Here is a test for multi-threaded circular imports (in order to exercise the import lock), following a comment by Graham Dumpleton on #9260. -- components: Tests files: circulartest.patch keywords: patch messages: 114541 nosy: brett.cannon, ncoghlan,

[issue1249749] Encodings and aliases do not match runtime

2010-08-21 Thread Mark Lawrence
Changes by Mark Lawrence : -- assignee: georg.brandl -> d...@python nosy: +d...@python versions: +Python 3.2 -Python 2.7 ___ Python tracker ___

[issue1252236] Simplying Tkinter's event loop

2010-08-21 Thread Mark Lawrence
Mark Lawrence added the comment: No reply to msg89363. -- nosy: +BreamoreBoy resolution: -> wont fix status: open -> closed versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Python tracker _

[issue1254125] Python interpreter unnecessarily linked against c++ runtime

2010-08-21 Thread Mark Lawrence
Mark Lawrence added the comment: No reply to msg60799. -- nosy: +BreamoreBoy resolution: -> wont fix status: open -> closed ___ Python tracker ___ ___

[issue4835] SIZEOF_SOCKET_T not defined

2010-08-21 Thread Antoine Pitrou
Antoine Pitrou added the comment: This new patch takes the reverse approach and makes the function definitions (PyLong_FromSocket_t() and PyLong_AsSocket_t()) private to socketmodule.h. I will commit if no-one objects. -- Added file: http://bugs.python.org/file18601/sockdefine2.patch

[issue1254718] GCC detection for runtime_library_dirs when ccache is used

2010-08-21 Thread Mark Lawrence
Mark Lawrence added the comment: The patch file is against distutils, should the title be changed to reflect that? -- nosy: +BreamoreBoy stage: -> patch review versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6 ___ Python tracker

[issue1283110] Give __len__() advice for "don't know"

2010-08-21 Thread Mark Lawrence
Changes by Mark Lawrence : -- assignee: georg.brandl -> d...@python nosy: +d...@python ___ Python tracker ___ ___ Python-bugs-list m

[issue9618] IDLE shell ignores all but first statement

2010-08-21 Thread Terry J. Reedy
Terry J. Reedy added the comment: I agree: Implementation note: PyShell.py hass the following line: from code import InteractiveInterpreter That is the base class for InteractiveConsole, the subject of #7741. PyShell makes it own extension class ModifiedInterpreter(InteractiveInterpreter): ---

[issue1254718] GCC detection for runtime_library_dirs when ccache is used

2010-08-21 Thread Éric Araujo
Éric Araujo added the comment: Mark, I’d say no, since the component field is already set. Actually, if you find reports that have distutils in the title but not as component, it would be helpful to set the right component. Thanks. -- nosy: +eric.araujo __

[issue7251] Mark expected failures of test_math, test_cmath and test_round as such.

2010-08-21 Thread Mark Dickinson
Mark Dickinson added the comment: Postscript: the failure Skip reported looks like a duplicate of issue 9069, which was tracked down to a gcc compiler bug in gcc 4.4.x (x <= 4) and gcc 4.5.x (x <= 0). That compiler bug is now fixed. -- ___ Python

[issue1254718] GCC detection for runtime_library_dirs when ccache is used

2010-08-21 Thread Éric Araujo
Éric Araujo added the comment: I’m in favor of committing the patch. I don’t like that it has no tests, but in this case I guess we have to rely on the documentation and just trust it will do the Right Thing™. Re: compatibility, the reason is that people want to use distutils from a given st

[issue9617] Buffered IO shouldn't ignore incoming signals during a partial write

2010-08-21 Thread Antoine Pitrou
Antoine Pitrou added the comment: Issue fixed in r84239 (trunk), r84240 (2.7) and r84241 (3.1). -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker _

[issue1284670] Allow to restrict ModuleFinder to get "direct" dependencies

2010-08-21 Thread Mark Lawrence
Mark Lawrence added the comment: Anyone interested in this or can it be closed? -- nosy: +BreamoreBoy versions: +Python 3.2 -Python 2.7 ___ Python tracker ___

[issue1289136] distutils extension library path bug on cygwin

2010-08-21 Thread Mark Lawrence
Changes by Mark Lawrence : -- assignee: -> tarek stage: -> needs patch versions: +Python 2.7, Python 3.1, Python 3.2 ___ Python tracker ___ __

[issue9129] DoS smtpd module vulnerability

2010-08-21 Thread Giampaolo Rodola'
Giampaolo Rodola' added the comment: Being not easy to patch asyncore in a retro-compatible way here's a patch for smtpd instead which can be applied to python 2.7, 3.1 and 3.2. Tested with nmap as shown in my first message on both Linux and FreeBSD and not exceptions are raised. -- a

[issue1284670] Allow to restrict ModuleFinder to get "direct" dependencies

2010-08-21 Thread Éric Araujo
Éric Araujo added the comment: Adding jvr and people interested in import machinery, per Misc/maintainers.rst Michael, can you refresh your patch against the py3k branch? Please also generate a unified diff from the top level of the source distribution, as detailed in http://www.python.org/de

[issue1291169] mmap with unsigned int offset and cross build for ppc

2010-08-21 Thread Mark Lawrence
Mark Lawrence added the comment: No reply to msg83875. -- nosy: +BreamoreBoy status: open -> closed ___ Python tracker ___ ___ Pyth

[issue9618] IDLE shell ignores all but first statement

2010-08-21 Thread Terry J. Reedy
Terry J. Reedy added the comment: To be clearer, this issue is an elaboration of the #3559 report that \n 'does not work' in that it points out that \n silently ignores the second while \n is reported as a syntax error. I agree that this elaboration should have been included there and I am ad

[issue1294032] Distutils writes keywords comma-separated

2010-08-21 Thread Mark Lawrence
Changes by Mark Lawrence : -- versions: -Python 2.5, Python 2.6 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscrib

[issue1294959] Problems with /usr/lib64 builds.

2010-08-21 Thread Mark Lawrence
Changes by Mark Lawrence : -- type: -> behavior versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6, Python 3.0 ___ Python tracker ___ __

[issue3559] Pasted \n not same as typed \n

2010-08-21 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +eric.araujo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue3559] Pasted \n not same as typed \n

2010-08-21 Thread Éric Araujo
Changes by Éric Araujo : -- versions: -Python 3.0 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.p

[issue1294032] Distutils writes keywords comma-separated

2010-08-21 Thread Éric Araujo
Éric Araujo added the comment: Mark, distutils2 has to be tested on versions 2.4-2.7 (soon 3.1 and 3.2 too), that’s why we set 2.5 and 2.6 in the versions too. (I would find “3rd party” more logical, but Tarek told me to set all versions.) -- versions: +Python 2.5, Python 2.6 ___

[issue9658] weakref.proxy unequal to its referent in 2.x

2010-08-21 Thread Mark Dickinson
New submission from Mark Dickinson : Nicholas Cole noted on python-list that the behaviour of weakref.proxy with respect to equality changed between 2.x and 3.x: Python 2.7 (r27:82500, Aug 15 2010, 14:21:15) [GCC 4.2.1 (Apple Inc. build 5664)] on darwin Type "help", "copyright", "credits" or

[issue9641] httplib/ftplib: timeout parameter not applied correctly

2010-08-21 Thread Giampaolo Rodola'
Changes by Giampaolo Rodola' : -- nosy: +giampaolo.rodola ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:/

[issue1597850] Cross compiling patches for MINGW

2010-08-21 Thread Éric Araujo
Éric Araujo added the comment: Distutils is normally frozen for new features, but in this case the changes are small and useful enough to warrant an exception in my opinion (provided the patch is ported to 3.2 and gets a positive review). Tarek, do you agree? -- assignee: -> tarek co

[issue9157] Allow inspection of used decorators on a function

2010-08-21 Thread Mitar
Mitar added the comment: Here is the concrete code how I imagined that: http://code.djangoproject.com/ticket/13854 So this would be not made in code of `wraps` function, but would be contract for implementers to do it, if they want to be visible (maybe they still do not want that). And all b

[issue8772] sysconfig: _get_default_scheme can be made public?

2010-08-21 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +eric.araujo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue2437] Distutils runtime_library_dirs broken on Windows

2010-08-21 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +eric.araujo, loewis versions: -Python 2.6 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue3559] Pasted \n not same as typed \n

2010-08-21 Thread Terry J. Reedy
Terry J. Reedy added the comment: I switched to patch review because I am not sure unit test is possible. I did not advocate a change to immediate execution in my original post. I noted that pasting multiple statements does not work and that if it cannot be made to work, the limitation should

[issue3559] Pasted \n not same as typed \n

2010-08-21 Thread Éric Araujo
Éric Araujo added the comment: Re: testability, Tarek has written tests for distutils interactive commands by monkey-patching input/raw_input. A bit ugly, but gets the job done. -- ___ Python tracker _

[issue3710] Reference leak in thread._local

2010-08-21 Thread Antoine Pitrou
Antoine Pitrou added the comment: > Of course, I'd be all for changing local_getattro/local_setattro > to not need _ldict to make that guarantee! _ldict always *returns* > the correct pointer; it would be nice to make use of that somehow. Indeed. Therefore, perhaps we could break the problem in

[issue7182] For non-debug builds, the cygwinccompiler.py should define NDEBUG

2010-08-21 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- nosy: -terry.reedy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.p

[issue3710] Reference leak in thread._local

2010-08-21 Thread Ben Cottrell
Ben Cottrell added the comment: The latest patch over in #1868 is working fine for my company in production, and solves #3710 as well. I think the only thing left to do on that patch is to make it special case "__dict__". -- ___ Python tracker

[issue9424] Disable unittest.TestCase.assertEquals and assert_ during a regrtest run

2010-08-21 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +eric.araujo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue9658] weakref.proxy unequal to its referent in 2.x

2010-08-21 Thread Terry J. Reedy
Terry J. Reedy added the comment: This is definitely not a critical fix for 2.6 ;-) The weakref.proxy doc says nothing about comparisons: "weakref.proxy(object[, callback]) Return a proxy to object which uses a weak reference. This supports use of the proxy in most contexts instead of requir

[issue7077] SysLogHandler can't handle Unicode

2010-08-21 Thread Georg Brandl
Georg Brandl added the comment: Looks good to me. -- status: pending -> closed ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue9658] weakref.proxy unequal to its referent in 2.x

2010-08-21 Thread Georg Brandl
Georg Brandl added the comment: Duplicate of #1170766 -- the lack of tp_richcompare support is reported among other missing slots there. -- nosy: +georg.brandl resolution: -> duplicate status: open -> closed superseder: -> weakref.proxy incorrect behaviour __

[issue2445] Use The CygwinCCompiler Under Cygwin

2010-08-21 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +eric.araujo versions: +Python 3.2 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

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

2010-08-21 Thread STINNER Victor
STINNER Victor added the comment: This issue may be related to #9561. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsu

[issue9171] sysconfig module does not support -m option

2010-08-21 Thread Éric Araujo
Éric Araujo added the comment: The behavior is here in 3.2 and the doc doesn’t mention it in 2.7. Closing. -- resolution: accepted -> fixed stage: needs patch -> committed/rejected status: open -> closed ___ Python tracker

[issue9171] sysconfig module does not support -m option

2010-08-21 Thread Éric Araujo
Éric Araujo added the comment: Note that my own preference would be to have the nice behavior in 2.7 too, but since it’s not a bug fix, I think it’s just too late. -- ___ Python tracker ___

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

2010-08-21 Thread STINNER Victor
STINNER Victor added the comment: Change _io.TextIOWrapper() heuristic to choose the encoding is a bad idea. -- ___ Python tracker ___ ___

[issue1597850] Cross compiling patches for MINGW

2010-08-21 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: > the changes are small which patch are you referring to? They look quite large to me. -- nosy: +amaury.forgeotdarc ___ Python tracker

[issue1597850] Cross compiling patches for MINGW

2010-08-21 Thread Éric Araujo
Éric Araujo added the comment: cross-3.0-0.7.diff only changes a few lines in build_ext. I was specifically talking only about distutils changes. -- ___ Python tracker ___ __

[issue1868] threading.local doesn't free attrs when assigning thread exits

2010-08-21 Thread Antoine Pitrou
Antoine Pitrou added the comment: The original patch won't apply anymore, because of changes in the thread._local implementation. Instead, here is a new patch, which also adds tests for the __dict__ behaviour, and two new private API functions: _PyObject_Generic{Get,Set}AttrWithDict. These

[issue3710] Reference leak in thread._local

2010-08-21 Thread Antoine Pitrou
Antoine Pitrou added the comment: Ok, then let's continue in #1868. -- resolution: -> duplicate status: open -> closed superseder: -> threading.local doesn't free attrs when assigning thread exits ___ Python tracker

[issue1597850] Cross compiling patches for MINGW

2010-08-21 Thread Martin v . Löwis
Martin v. Löwis added the comment: For cross-3.0-0.7.diff, we would need a real name and a contributor agreement. Of course, attribution is muddy here; this literally goes back to sraue's patch, which in turn goes back to scott.tsai's patch. I'm still uncertain what it is that this patch actu

[issue1868] threading.local doesn't free attrs when assigning thread exits

2010-08-21 Thread Antoine Pitrou
Antoine Pitrou added the comment: It should be noted that the original reason for this issue is already gone in SVN (as part of the reimplementation alluded to above), but the timing fragility is still there since there can be a thread switch between the moment the "dict" member is set and th

[issue858809] Use directories from configure rather than hardcoded

2010-08-21 Thread Éric Araujo
Éric Araujo added the comment: About lib vs. lib64 vs. lib32, see also http://bugs.python.org/issue1294959#msg94941 -- ___ Python tracker ___ _

[issue858809] Use directories from configure rather than hardcoded

2010-08-21 Thread Éric Araujo
Changes by Éric Araujo : -- Removed message: http://bugs.python.org/msg45044 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue9624] 2755

2010-08-21 Thread Brian Curtin
Brian Curtin added the comment: When you install what? Python, Blender, or clonk? Can you take a screenshot of the message that you see, possibly along with more details about what it is that you are doing? -- nosy: +brian.curtin ___ Python tracker

[issue858809] Use directories from configure rather than hardcoded

2010-08-21 Thread Éric Araujo
Éric Araujo added the comment: I don’t know much about Makefile.pre.in, so I can’t say anything about the patch. Martin, could you maybe comment? -- nosy: +loewis ___ Python tracker _

[issue858809] Use directories from configure rather than hardcoded

2010-08-21 Thread Éric Araujo
Éric Araujo added the comment: >From http://bugs.python.org/issue1294959#msg94986 “The main problem is that Python's configuration system is not geared up to having the lib directories for platform dependent and platform independent parts use different names. It currently only supports using d

[issue9437] can't build extensions with non-default ldflags (e.g. -m32)

2010-08-21 Thread Éric Araujo
Éric Araujo added the comment: May be related to #4010 and #9047 The bug report that triggered the edits to configure is #9189 -- ___ Python tracker ___

[issue9189] Improve CFLAGS handling

2010-08-21 Thread Éric Araujo
Éric Araujo added the comment: Bugs that may be related: #4010 and #9437 Jeffrey, it would be great if you could have a look at those too. Thanks in advance. -- ___ Python tracker

[issue9047] Python 2.7rc2 includes -isysroot twice on each gcc command line

2010-08-21 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +eric.araujo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue9625] argparse: Problem with defaults for variable nargs

2010-08-21 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: -> bethard ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.p

[issue9624] "failure to find drive" error message when trying to install something unspecified

2010-08-21 Thread Georg Brandl
Changes by Georg Brandl : -- title: 2755 -> "failure to find drive" error message when trying to install something unspecified ___ Python tracker ___

[issue1234473] configure: error: cannot compute sizeof (int), 77

2010-08-21 Thread Georg Brandl
Georg Brandl added the comment: Agreed. -- resolution: -> out of date status: pending -> closed ___ Python tracker ___ ___ Python-

[issue858809] Use directories from configure rather than hardcoded

2010-08-21 Thread Martin v . Löwis
Martin v. Löwis added the comment: I don't think anything in distutils can solve whatever the problem is that people perceive. All I can say about the patch is that it apparently doesn't do any harm. I expect that, if it is accepted, people continue complain that "it doesn't work". Unfortuna

[issue7453] HPUX 11.00: socketmodule.c -- error 1588: "AI_PASSIVE" undefined.

2010-08-21 Thread Georg Brandl
Georg Brandl added the comment: Closing - out of date. -- nosy: +georg.brandl resolution: -> out of date status: open -> closed ___ Python tracker ___ __

[issue4594] Can't compile with -O3, on ARM, with gcc 3.4.4

2010-08-21 Thread Georg Brandl
Georg Brandl added the comment: Any progress? -- nosy: +georg.brandl ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscr

[issue4594] Can't compile with -O3, on ARM, with gcc 3.4.4

2010-08-21 Thread Éric Araujo
Changes by Éric Araujo : -- versions: +Python 3.2 -Python 3.0 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: ht

[issue1637120] Python 2.5 fails to build on AIX 5.3 (xlc_r compiler)

2010-08-21 Thread Georg Brandl
Georg Brandl added the comment: Closing due to lack of activity. -- nosy: +georg.brandl resolution: -> out of date status: open -> closed ___ Python tracker ___ _

[issue1465838] HP-UX11i: illegal combination of compilation and link flags

2010-08-21 Thread Georg Brandl
Georg Brandl added the comment: Is this still relevant? -- nosy: +georg.brandl ___ Python tracker ___ ___ Python-bugs-list mailing

[issue1099] Mac compile fails with pydebug and framework enabled

2010-08-21 Thread Georg Brandl
Georg Brandl added the comment: Is this still relevant? -- nosy: +georg.brandl ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue7415] PyUnicode_FromEncodedObject() uses PyObject_AsCharBuffer()

2010-08-21 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +haypo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[issue3246] configure: WARNING: sys/socket.h: present but cannot be compiled

2010-08-21 Thread Georg Brandl
Georg Brandl added the comment: Closing due to lack of activity. -- nosy: +georg.brandl resolution: -> out of date status: open -> closed ___ Python tracker ___

[issue1027206] unicode DNS names in socket, urllib, urlopen

2010-08-21 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +haypo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue1434] SocketServer creates non-blocking files

2010-08-21 Thread Georg Brandl
Georg Brandl added the comment: Closing due to lack of activity. -- nosy: +georg.brandl resolution: -> works for me status: open -> closed ___ Python tracker ___ ___

[issue1465838] HP-UX11i: illegal combination of compilation and link flags

2010-08-21 Thread Ralf W. Grosse-Kunstleve
Ralf W. Grosse-Kunstleve added the comment: I've no access to HP machines anymore. It's probably not worth anybody's time. Ralf -- ___ Python tracker ___ _

[issue2268] Fold slice constants

2010-08-21 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: -> rhettinger ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue2481] locale.strxfrm does not work with Unicode strings

2010-08-21 Thread Georg Brandl
Changes by Georg Brandl : -- versions: +Python 2.7 -Python 2.6 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: h

[issue3177] implement os.startfile on posix and MacOSX

2010-08-21 Thread Georg Brandl
Changes by Georg Brandl : -- versions: +Python 3.2 -Python 2.7 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: h

[issue2268] Fold slice constants

2010-08-21 Thread Georg Brandl
Changes by Georg Brandl : -- versions: +Python 3.2 -Python 3.0 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: h

[issue1390197] tempfile misses usecase which requirs renaming

2010-08-21 Thread Georg Brandl
Georg Brandl added the comment: Closing due to questionable usecase. -- nosy: +georg.brandl resolution: -> rejected status: open -> closed ___ Python tracker ___

[issue3170] test_pydoc has no way to regenerate pristine data

2010-08-21 Thread Georg Brandl
Georg Brandl added the comment: Ping? -- nosy: +georg.brandl ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: ht

[issue3170] test_pydoc has no way to regenerate pristine data

2010-08-21 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +eric.araujo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue4594] Can't compile with -O3, on ARM, with gcc 3.4.4

2010-08-21 Thread Stefan Krah
Stefan Krah added the comment: The new CFLAGS logic is capable of overriding configure options and CFLAGS are mentioned in ./configure --help. I think OPT is somewhat obsolete now, so perhaps this could be closed. $ make CFLAGS="-O2" gcc -pthread -c -ftest-coverage -fprofile-arcs -fno-strict-a

[issue1465838] HP-UX11i: illegal combination of compilation and link flags

2010-08-21 Thread Georg Brandl
Georg Brandl added the comment: OK, closing. -- resolution: -> out of date status: open -> closed ___ Python tracker ___ ___ Pytho

[issue1390197] tempfile misses usecase which requirs renaming

2010-08-21 Thread Éric Araujo
Éric Araujo added the comment: Maybe #8828 or #8604 are what you’re looking for. -- nosy: +eric.araujo ___ Python tracker ___ ___ P

[issue8828] Atomic function to rename a file

2010-08-21 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +eric.araujo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue1503] test_xmlrpc is still flakey

2010-08-21 Thread Georg Brandl
Georg Brandl added the comment: I've not seen special failures of test_xmlrpc lately. -- nosy: +georg.brandl resolution: -> out of date status: open -> closed ___ Python tracker ___

[issue4594] Can't compile with -O3, on ARM, with gcc 3.4.4

2010-08-21 Thread Stefan Krah
Changes by Stefan Krah : -- keywords: -needs review ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue1081824] Rewrite of docs for compiler.visitor

2010-08-21 Thread Georg Brandl
Georg Brandl added the comment: compiler is now deprecated and unmaintained anyway. -- resolution: -> out of date status: open -> closed ___ Python tracker ___ __

[issue3548] subprocess.pipe function

2010-08-21 Thread Georg Brandl
Changes by Georg Brandl : -- versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing list Uns

[issue2595] Multiple integer overflows in imgfile extension module lead to buffer overflow

2010-08-21 Thread Georg Brandl
Georg Brandl added the comment: I don't think anyone cares about these modules anymore. -- nosy: +georg.brandl resolution: -> out of date status: open -> closed ___ Python tracker _

[issue1348] httplib closes socket, then tries to read from it

2010-08-21 Thread Georg Brandl
Georg Brandl added the comment: Is this still relevant? -- nosy: +georg.brandl ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue3417] make the fix_dict fixer smarter

2010-08-21 Thread Georg Brandl
Georg Brandl added the comment: Is this still relevant? -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http

[issue3417] make the fix_dict fixer smarter

2010-08-21 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +eric.araujo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue3417] make the fix_dict fixer smarter

2010-08-21 Thread Benjamin Peterson
Changes by Benjamin Peterson : -- resolution: -> wont fix ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:

[issue4594] Can't compile with -O3, on ARM, with gcc 3.4.4

2010-08-21 Thread Georg Brandl
Georg Brandl added the comment: OK, sounds reasonable. -- resolution: -> out of date status: open -> closed ___ Python tracker ___ __

[issue8797] urllib2 basicauth broken in 2.6.5: RuntimeError: maximum recursion depth exceeded in cmp

2010-08-21 Thread Éric Araujo
Changes by Éric Araujo : -- resolution: fixed -> ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue3805] sslobj.read py3k takes odd arguments

2010-08-21 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: janssen -> pitrou nosy: +pitrou ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubsc

[issue1708652] Exact matching

2010-08-21 Thread Georg Brandl
Changes by Georg Brandl : -- versions: +Python 3.2 -Python 2.7 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue4500] Compiler warnings when compiling Python 3.0 with a C89 compiler

2010-08-21 Thread Georg Brandl
Georg Brandl added the comment: These are probably all fixed by now. -- nosy: +georg.brandl resolution: -> out of date status: open -> closed ___ Python tracker ___

[issue4320] optparse: "1 2 3" should be seen as one string

2010-08-21 Thread Georg Brandl
Georg Brandl added the comment: Closing due to vague report description. -- nosy: +georg.brandl resolution: -> out of date status: open -> closed ___ Python tracker ___

<    1   2   3   >