[issue1653416] OS X print >> f, "Hello" produces no error on read-only f: normal?

2010-09-16 Thread Eric O. LEBIGOT
Changes by Eric O. LEBIGOT : -- title: OS X print >> f, "Hello" produces no error: normal? -> OS X print >> f, "Hello" produces no error on read-only f: normal? ___ Python tracker ___

[issue9786] Native TLS support for pthreads

2010-09-16 Thread Kristján Valur Jónsson
Kristján Valur Jónsson added the comment: Ok, here is a patch. key creation returns -1 on error, and the caller can detect this and raise a fatal error. -- Added file: http://bugs.python.org/file18906/pthread_tls.patch ___ Python tracker

[issue1653416] OS X print >> f, "Hello" produces no error: normal?

2010-09-16 Thread Ronald Oussoren
Ronald Oussoren added the comment: This is not an issue for 3.x because the io library doesn't use stdio. I'd say this is unlikely to get fixed in 2.7 as every call to stdio functions needs to be checked and updated. -- versions: -Python 3.1, Python 3.2 _

[issue9883] minidom: AttributeError: DocumentFragment instance has no attribute 'writexml'

2010-09-16 Thread Aubrey Barnard
New submission from Aubrey Barnard : Summary: Writing a document fragment doesn't work because the 'writexml' method is not implemented. Problem: I would like to be able to write out document fragments as XML text, but this functionality is not implemented. Here are the reasons why I think thi

[issue9882] abspath from directory

2010-09-16 Thread ipatrol
New submission from ipatrol : Just an easy patch. os.path.abspath is defined as os.path.normpath(os.path.join(os.getcwd(),path), but os.path.relpath also adds a start option. This creates an asymmetry where getting the absolute path from a relative path and a directory has no single operation

[issue5629] PEP 0 date and revision not being set

2010-09-16 Thread Brett Cannon
Brett Cannon added the comment: Done in r84855. -- assignee: -> brett.cannon resolution: -> fixed status: open -> closed ___ Python tracker ___

[issue9740] Support for HTTP 1.1 persistent connections throughout the standard library

2010-09-16 Thread ipatrol
ipatrol added the comment: Possibly, but I don't really have expertise in the underbelly of the HTTP system. -- ___ Python tracker ___ __

[issue1676820] Add a PeriodicTimer to threading

2010-09-16 Thread Jeffrey Yasskin
Jeffrey Yasskin added the comment: Java's Timer class tends to be discouraged these days in favor of ScheduledExecutorService.scheduleAtFixedRate and .scheduleWithFixedDelay (http://download.oracle.com/javase/7/docs/api/java/util/concurrent/ScheduledExecutorService.html). Could you say why yo

[issue9880] Python 2.7 Won't Build: SystemError: unknown opcode

2010-09-16 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: Note that I tried to reproduce this on my 10.04.1 system, with various states of Python 2.7 installed, etc. and was unable to reproduce it. It's certainly odd that you're getting the SystemError on that line. --

[issue3180] Interrupts are lost during readline PyOS_InputHook processing

2010-09-16 Thread Mark Lawrence
Mark Lawrence added the comment: I'm unsure as to whether this is a feature request or a behaviour problem, anyone? Regardless could a core dev take a look at the patch which involves changes to the API for PyOS_InputHook, see msg68638. -- nosy: +BreamoreBoy stage: unit test needed -

[issue9880] Python 2.7 Won't Build: SystemError: unknown opcode

2010-09-16 Thread Tom Browder
Tom Browder added the comment: File attached as requested. -- Added file: http://bugs.python.org/file18905/os.pyc ___ Python tracker ___ _

[issue706406] fix bug #685846: raw_input defers signals

2010-09-16 Thread Mark Lawrence
Mark Lawrence added the comment: Can someone please comment on msg114316 as I'm out of my depth here, thanks. -- versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6 ___ Python tracker __

[issue1676820] Add a PeriodicTimer to threading

2010-09-16 Thread Antoine Pitrou
Antoine Pitrou added the comment: I don't really agree with "negative periods behave like if the period was 0". Negative periods don't mean anything and should just raise ValueError. (as for 0, well, we can allow it anyway, although it means the timer just degenerates into an busy loop) The d

[issue9879] Tracker Won't Accept New Bugs

2010-09-16 Thread Ned Deily
Ned Deily added the comment: Glad you were able to get past the problem. Looks like there already is an open issue about this on the Meta-tracker (for bug reports about the bug tracker itself): http://psf.upfronthosting.co.za/roundup/meta/issue336 -- nosy: +ned.deily resolution: ->

[issue9875] Garbage output when running setup.py on Windows

2010-09-16 Thread Jean-Paul Calderone
Jean-Paul Calderone added the comment: This seems to have been caused by an ill-placed distutils.log.set_verbosity(3) call. With that removed, this output isn't generated by default. So perhaps this is invalid, feel free to close it as so if you agree. -- __

[issue1681974] mkdtemp fails on Windows if username has non-ASCII character

2010-09-16 Thread Mark Lawrence
Mark Lawrence added the comment: I can't reproduce this problem on Windows Vista with any of the current maintainance branches of Python using the interactive prompt from the command line. -- nosy: +BreamoreBoy ___ Python tracker

[issue9881] PySSL_SSLread loops until data is available, even in non-blocking mode

2010-09-16 Thread Jean-Paul Calderone
Jean-Paul Calderone added the comment: Hm. I must have been testing with old versions, since I can't reproduce this now. Sorry for the noise. -- resolution: out of date -> duplicate status: pending -> closed ___ Python tracker

[issue9881] PySSL_SSLread loops until data is available, even in non-blocking mode

2010-09-16 Thread Antoine Pitrou
Antoine Pitrou added the comment: It was corrected between 2.6.5 and 2.6.6 (see r79291 and also potentially r80453). Here, on the 2.6 maintenance branch: >>> import socket, time, ssl >>> s = ssl.wrap_socket(socket.socket()) >>> s.connect(('linuxfr.org', 443)) >>> s.setblocking(False) >>> s.re

[issue9881] PySSL_SSLread loops until data is available, even in non-blocking mode

2010-09-16 Thread Jean-Paul Calderone
Changes by Jean-Paul Calderone : -- title: PySSL_SSLRead loops until data is available, even in non-blocking mode -> PySSL_SSLread loops until data is available, even in non-blocking mode ___ Python tracker ___

[issue9881] PySSL_SSLRead loops until data is available, even in non-blocking mode

2010-09-16 Thread Jean-Paul Calderone
New submission from Jean-Paul Calderone : Here's a transcript which demonstrates the blocking behavior: >>> import socket >>> import time >>> import ssl >>> s = ssl.wrap_socket(socket.socket()) >>> s.connect(('localhost', 8443)) >>> s.send('GET /async.rpy HTTP/1.1\r\n\r\n') 27 >>> s.setblocking(

[issue9880] Python 2.7 Won't Build: SystemError: unknown opcode

2010-09-16 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: Maybe a corrupted .pyc file? Can you please attach the file /usr/local/src/python-2.7-maint-svn/Lib/os.pyc -- nosy: +amaury.forgeotdarc ___ Python tracker ___

[issue1678077] improve telnetlib.Telnet so option negotiation becomes easie

2010-09-16 Thread Mark Lawrence
Changes by Mark Lawrence : -- components: +Library (Lib) -None stage: -> unit test needed type: -> feature request versions: +Python 3.2 -Python 3.0 ___ Python tracker ___ __

[issue1675951] [gzip] Performance for small reads and fix seek problem

2010-09-16 Thread Antoine Pitrou
Antoine Pitrou added the comment: > As there has been a lot of support for the attached patch what is > needed to take this forward? Read my 2010-06-17 message above. Someone needs to update the patch for 3.2, and preferable show that it still brings an improvement (small micro-benchmarks are

[issue1676820] Add a PeriodicTimer to threading

2010-09-16 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +pitrou ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue1677694] test_timeout refactoring

2010-09-16 Thread Mark Lawrence
Mark Lawrence added the comment: Could someone with commit privileges please take this forward? -- ___ Python tracker ___ ___ Pytho

[issue9879] Tracker Won't Accept New Bugs

2010-09-16 Thread Tom Browder
Tom Browder added the comment: It looks like the problem was because I was trying to add a complete e-mail address to the "nosy" list. -- ___ Python tracker ___

[issue1676820] Add a PeriodicTimer to threading

2010-09-16 Thread Mark Lawrence
Mark Lawrence added the comment: Could someone with commit privileges please take a look at the patch, thanks. -- ___ Python tracker ___ __

[issue9880] Python 2.7 Won't Build: SystemError: unknown opcode

2010-09-16 Thread Tom Browder
Changes by Tom Browder : -- nosy: +barry ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/

[issue9880] Python 2.7 Won't Build: SystemError: unknown opcode

2010-09-16 Thread Tom Browder
New submission from Tom Browder : I am trying to rebuild the 2.7 maintenance branch and get this error on Ubuntu 10.04.1 LTS: XXX lineno: 743, opcode: 0 Traceback (most recent call last): File "/usr/local/src/python-2.7-maint-svn/Lib/site.py", line 62, in import os File "/usr/local/src/pyth

[issue1675951] [gzip] Performance for small reads and fix seek problem

2010-09-16 Thread Mark Lawrence
Mark Lawrence added the comment: As there has been a lot of support for the attached patch what is needed to take this forward? -- nosy: +BreamoreBoy ___ Python tracker ___ _

[issue9879] Tracker Won't Accept New Bugs

2010-09-16 Thread Tom Browder
Tom Browder added the comment: Since this worked, I tried again to enter the bug with a new process. I have tried changing several selections but I still get the error--very strange! -- ___ Python tracker ___

[issue9879] Tracker Won't Accept New Bugs

2010-09-16 Thread Tom Browder
New submission from Tom Browder : When I attempt to enter a new bug I get: An error has occurred A problem was encountered processing your request. The tracker maintainers have been notified of the problem. -- components: Demos and Tools messages: 116620 nosy: Tom.Browder priority: nor

[issue1675455] Use getaddrinfo() in urllib2.py for IPv6 support

2010-09-16 Thread Mark Lawrence
Mark Lawrence added the comment: @Senthil should this be assigned to your good self? -- nosy: +BreamoreBoy ___ Python tracker ___ _

[issue1671676] test_mailbox is hanging while doing gmake test on HP-UX v3

2010-09-16 Thread Mark Lawrence
Mark Lawrence added the comment: Can someone with an HP-UX box please see if this is still a problem with currently supported versions of Python. -- nosy: +BreamoreBoy versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6 ___ Python tracker

[issue5629] PEP 0 date and revision not being set

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

[issue1665333] Documentation missing for OptionGroup class in optparse

2010-09-16 Thread Éric Araujo
Éric Araujo added the comment: Adding docs@ to nosy. amk: Please reassign to docs@ if you don’t intend to work on this. -- nosy: +d...@python, eric.araujo versions: +Python 3.1, Python 3.2 ___ Python tracker __

[issue1659705] Python extension problems after re-install

2010-09-16 Thread elf
elf added the comment: Yeah this was fixed a long time ago thanks :) -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___

[issue1669349] make install fails if no previous Python installation

2010-09-16 Thread Mark Lawrence
Mark Lawrence added the comment: Can someone with install and/or build experience please confirm or deny that this is a problem with supported versions of Python. -- nosy: +BreamoreBoy versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6, Python 3.0 __

[issue5629] PEP 0 date and revision not being set

2010-09-16 Thread Benjamin Peterson
Benjamin Peterson added the comment: 2010/9/16 Brett Cannon : > > Brett Cannon added the comment: > > Yes, it's just a question of how to interpret it. If we bother keeping the > info in there, should it be for all updates to PEPs, or just when a PEP is > added? I think you could just as wel

[issue1665333] Documentation missing for OptionGroup class in optparse

2010-09-16 Thread Mark Lawrence
Mark Lawrence added the comment: Should this be left with AMK or should it be reassigned to d...@python? -- nosy: +BreamoreBoy ___ Python tracker ___ _

[issue1653416] OS X print >> f, "Hello" produces no error: normal?

2010-09-16 Thread Ned Deily
Ned Deily added the comment: At least for the original test case, the Python 3 equivalent does fail on OS X: $ python3.1 Python 3.1.2 (r312:79360M, Mar 24 2010, 01:33:18) [GCC 4.0.1 (Apple Inc. build 5493)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> f

[issue1661754] ftplib passive ftp problem on multihomed clients

2010-09-16 Thread Mark Lawrence
Changes by Mark Lawrence : -- versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6, Python 3.0 ___ Python tracker ___ ___ Pytho

[issue1660009] continuing problem with httplib multiple set-cookie headers

2010-09-16 Thread Mark Lawrence
Changes by Mark Lawrence : -- assignee: georg.brandl -> d...@python nosy: +d...@python versions: +Python 3.1, Python 3.2 ___ Python tracker ___

[issue1659705] Python extension problems after re-install

2010-09-16 Thread Mark Lawrence
Mark Lawrence added the comment: I've been chopping and changing versions recently and haven't had any problems. @Brian/Tim any comments? -- nosy: +BreamoreBoy, brian.curtin, tim.golden ___ Python tracker

[issue9874] Message.attach() loses empty attachments

2010-09-16 Thread Éric Araujo
Changes by Éric Araujo : -- versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6 ___ Python tracker ___ ___ Python-bugs-list maili

[issue9877] Expose sysconfig._get_makefile_filename() in public API

2010-09-16 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: On Sep 16, 2010, at 08:27 PM, Éric Araujo wrote: >Éric Araujo added the comment: > >> I don't agree that it's a bad thing that sysconfig exposes >> implementation specific information - it seems kind of the point of >> it. > >Well, it exposes configuration in

[issue9876] ConfigParser can't interpolate values from other sections

2010-09-16 Thread Éric Araujo
Éric Araujo added the comment: Stable versions don’t get new features, only bug fixes. -- nosy: +eric.araujo, fdrake, lukasz.langa versions: +Python 3.2 -Python 2.7 ___ Python tracker __

[issue3020] doctest should have lib2to3 integration

2010-09-16 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +benjamin.peterson, tim_one versions: +Python 3.2 -Python 3.0 ___ Python tracker ___ ___ Python-bugs-

[issue3020] doctest should have lib2to3 integration

2010-09-16 Thread Éric Araujo
Éric Araujo added the comment: Still valid IMO. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.

[issue9683] Dead code in py3k inspect module

2010-09-16 Thread Andreas Stührk
Andreas Stührk added the comment: The documentation about `getargvalues()` and the docstrings of `getargspec()` and friends still mention nested lists for args. Should I update the patch or should I create a new issue? -- ___ Python tracker

[issue9807] deriving configuration information for different builds with the same prefix

2010-09-16 Thread Éric Araujo
Éric Araujo added the comment: Antoine: > Is there any point in creating another extension module? > We already have Modules/getpath.c which receives various configuration > values at compile-time, themselves exposed as sys.prefix and friends. I have no opinion on generating a new module vs. ad

[issue9878] Avoid parsing pyconfig.h and Makefile by autogenerating extension module

2010-09-16 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +eric.araujo, tarek ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue1653457] Python misbehaves when installed in / (patch attached)

2010-09-16 Thread Mark Lawrence
Mark Lawrence added the comment: Can someone with a Linux box try the latest patch please. -- ___ Python tracker ___ ___ Python-bug

[issue9877] Expose sysconfig._get_makefile_filename() in public API

2010-09-16 Thread Éric Araujo
Éric Araujo added the comment: > I don't agree that it's a bad thing that sysconfig exposes > implementation specific information - it seems kind of the point of it. Well, it exposes configuration information, for example paths (which should exist in all VMs), but things like the existence of

[issue5309] setup.py doesn't parallelize extension module compilation

2010-09-16 Thread Éric Araujo
Éric Araujo added the comment: Do you want to work on a patch? -- stage: -> needs patch versions: +Python 2.5, Python 2.6, Python 2.7, Python 3.1 ___ Python tracker ___

[issue1653416] OS X print >> f, "Hello" produces no error: normal?

2010-09-16 Thread Mark Lawrence
Mark Lawrence added the comment: I've assumed this is still a problem on OS X. -- nosy: +BreamoreBoy title: print >> f, "Hello" produces no error: normal? -> OS X print >> f, "Hello" produces no error: normal? versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6 _

[issue9873] Allow bytes in some APIs that use string literals internally

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

[issue1651427] readline needs termcap on my FC6

2010-09-16 Thread Mark Lawrence
Mark Lawrence added the comment: I can't believe that this is still an issue over 3 1/2 years on. -- nosy: +BreamoreBoy resolution: -> out of date status: open -> closed ___ Python tracker _

[issue1648957] HP-UX: _ctypes/libffi/src/ia64/ffi/__attribute__/native cc

2010-09-16 Thread Mark Lawrence
Mark Lawrence added the comment: Is this still a problem with later versions of Python and/or the quoted OSes? -- nosy: +BreamoreBoy versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6, Python 3.0 ___ Python tracker

[issue1648890] HP-UX: ld -Wl,+b...

2010-09-16 Thread Mark Lawrence
Changes by Mark Lawrence : -- versions: +Python 3.2 -Python 2.6, Python 3.0 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue5629] PEP 0 date and revision not being set

2010-09-16 Thread Brett Cannon
Brett Cannon added the comment: Yes, it's just a question of how to interpret it. If we bother keeping the info in there, should it be for all updates to PEPs, or just when a PEP is added? -- ___ Python tracker __

[issue5755] "-Wstrict-prototypes" is valid for Ada/C/ObjC but not for C++"

2010-09-16 Thread Jason Grout
Jason Grout added the comment: Any progress on this? I see this warning a *lot* when compiling lots of packages for Sage (matplotlib included). -- nosy: +Jason.Grout ___ Python tracker ___

[issue9877] Expose sysconfig._get_makefile_filename() in public API

2010-09-16 Thread Barry A. Warsaw
Changes by Barry A. Warsaw : Added file: http://bugs.python.org/file18904/docs.diff ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue6893] defaultdict example in py3 doc should mention the new Counter class

2010-09-16 Thread Raymond Hettinger
Raymond Hettinger added the comment: This example needs to stay. It was one of the principal motiviating use cases for defaultdict and it is a good, simple, understandable example of how to use it. Also, I don't want to cross-link these two tools because they a subtly different (the default

[issue9877] Expose sysconfig._get_makefile_filename() in public API

2010-09-16 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: Patch attached. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://ma

[issue9877] Expose sysconfig._get_makefile_filename() in public API

2010-09-16 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: I don't agree that it's a bad thing that sysconfig exposes implementation specific information - it seems kind of the point of it. "The sysconfig module provides access to Python’s configuration information like the list of installation paths and the configu

[issue9877] Expose sysconfig._get_makefile_filename() in public API

2010-09-16 Thread Barry A. Warsaw
Changes by Barry A. Warsaw : -- keywords: +patch Added file: http://bugs.python.org/file18903/9877.diff ___ Python tracker ___ ___ Pyth

[issue9877] Expose sysconfig._get_makefile_filename() in public API

2010-09-16 Thread Benjamin Peterson
Benjamin Peterson added the comment: Yes, it's unfortunate that that is exposed. Hopefully, sysconfig will evolve some way to find information independent of implementation. -- ___ Python tracker _

[issue8921] 2.7rc1: test_ttk failures on OSX 10.4

2010-09-16 Thread Ned Deily
Ned Deily added the comment: Duplicate of unresolved Issue8445 -- assignee: ronaldoussoren -> nosy: +ned.deily resolution: -> duplicate status: open -> closed superseder: -> buildbot: test_ttk_guionly failures (test_traversal, test_tab_identifiers, test_identify, test_heading_callba

[issue9877] Expose sysconfig._get_makefile_filename() in public API

2010-09-16 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: On Sep 16, 2010, at 06:15 PM, Benjamin Peterson wrote: >-1 The Makefile is very implementation specific to CPython. and pyconfig.h isn't? -Barry -- ___ Python tracker _

[issue9877] Expose sysconfig._get_makefile_filename() in public API

2010-09-16 Thread Benjamin Peterson
Benjamin Peterson added the comment: -1 The Makefile is very implementation specific to CPython. -- nosy: +benjamin.peterson ___ Python tracker ___ __

[issue9869] long_subtype_new segfault in pure-Python code

2010-09-16 Thread Eric Smith
Changes by Eric Smith : -- nosy: +eric.smith versions: -Python 2.5 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscrib

[issue9878] Avoid parsing pyconfig.h and Makefile by autogenerating extension module

2010-09-16 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: See issue 9807 -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue4837] Omits MACHINE and DEBUG when building tix8.4.3

2010-09-16 Thread Mark Lawrence
Changes by Mark Lawrence : -- resolution: -> out of date status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue9807] deriving configuration information for different builds with the same prefix

2010-09-16 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: See issue 9878 for the "don't parse" bug. -- ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue9878] Avoid parsing pyconfig.h and Makefile by autogenerating extension module

2010-09-16 Thread Barry A. Warsaw
New submission from Barry A. Warsaw : This is splitting one concern from bug 9807 - specifically to avoid parsing pyconfig.h and Makefile in the sysconfig module by autogenerating an extension module (e.g. _sysconfig.c) at build time and using that to get the variables from those two files. -

[issue9868] test_locale leaves locale changed

2010-09-16 Thread Hirokazu Yamamoto
Hirokazu Yamamoto added the comment: This patch is *as is* patch. Index: Lib/test/test_locale.py === --- Lib/test/test_locale.py (revision 84824) +++ Lib/test/test_locale.py (working copy) @@ -352,13 +352,13 @@ locale_

[issue9807] deriving configuration information for different builds with the same prefix

2010-09-16 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: I was thinking along the lines that RDM outlined, IOW that _sysconfig.c or equivalent would be autogenerated at build time. But I think there are really two issues here: 1) Avoiding parsing of pyconfig.h and Makefile to get variable values for the sysconfi

[issue1634774] locale 1251 does not convert to upper case properly

2010-09-16 Thread Mark Lawrence
Mark Lawrence added the comment: I've tried to see if this is still an issue but frankly can't make head nor tail out of it :( Any locale gurus up for this? -- nosy: +BreamoreBoy ___ Python tracker ___

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

2010-09-16 Thread Hirokazu Yamamoto
Hirokazu Yamamoto added the comment: Committed in r84851(py3k). Let's see buildbot. -- ___ Python tracker ___ ___ Python-bugs-list mai

[issue9877] Expose sysconfig._get_makefile_filename() in public API

2010-09-16 Thread Barry A. Warsaw
New submission from Barry A. Warsaw : sysconfig.get_config_h_filename() returns the path of pyconfig.h. The Makefile is also used to return values from sysconfig but it's path is hidden in a non-public method, for no good reason that I can think of. Therefore, sysconfig._get_makefile_filenam

[issue1187] pipe fd handling issues in subprocess.py on POSIX

2010-09-16 Thread Jeffrey Finkelstein
Jeffrey Finkelstein added the comment: Here's a patch which adds the test from 1187-dustin.patch for the py3k branch. The test passes without any additional changes to the py3k code. -- nosy: +jfinkels Added file: http://bugs.python.org/file18902/issue1187.patch __

[issue1633953] re.compile("(.*$){1,4}", re.MULTILINE) fails

2010-09-16 Thread Mark Lawrence
Mark Lawrence added the comment: Can this be closed as a duplicate of #2537? -- nosy: +BreamoreBoy ___ Python tracker ___ ___ Pytho

[issue4837] Omits MACHINE and DEBUG when building tix8.4.3

2010-09-16 Thread Hirokazu Yamamoto
Hirokazu Yamamoto added the comment: Of cource, I'm happy if anyone needs this patch. ;-) -- ___ Python tracker ___ ___ Python-bugs-li

[issue9807] deriving configuration information for different builds with the same prefix

2010-09-16 Thread Barry A. Warsaw
Changes by Barry A. Warsaw : -- title: deriving configuration information for different builds with the same prefix -> deriving configuration information for different builds with the same prefix ___ Python tracker

[issue4837] Omits MACHINE and DEBUG when building tix8.4.3

2010-09-16 Thread Hirokazu Yamamoto
Hirokazu Yamamoto added the comment: I think so, because TIX version built with python is not changed. Anuway, I'm using PC/VC6/build_tkinter.py to build TCL/TK and TIX, so I myself do not need this patch so much. Please feel free to close this issue. -- _

[issue9870] compile and nested scopes

2010-09-16 Thread Georg Brandl
Georg Brandl added the comment: If you want to execute code as in the global namespace, don't supply a separate "locals" dict to eval/exec. -- nosy: +georg.brandl resolution: -> invalid status: open -> closed ___ Python tracker

[issue460474] codecs.StreamWriter: reset() on close()

2010-09-16 Thread R. David Murray
Changes by R. David Murray : -- status: closed -> languishing ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1648923] HP-UX: -lcurses missing for readline.so

2010-09-16 Thread R. David Murray
R. David Murray added the comment: It could still exist since we don't seem to have many people building python on hpux. That said, unless the op confirms the problem still exists in 2.7 or later this can stay closed. -- nosy: +r.david.murray ___

[issue8921] 2.7rc1: test_ttk failures on OSX 10.4

2010-09-16 Thread Mark Lawrence
Mark Lawrence added the comment: Were these test failures fixed prior to the full release of 2.7 in which case this can be closed? -- nosy: +BreamoreBoy ___ Python tracker ___ _

[issue8554] suspicious comment in msilib.py/__init__.py

2010-09-16 Thread Mark Lawrence
Mark Lawrence added the comment: The line in question has been like that since r42847 i.e. when the file came into existence. -- nosy: +BreamoreBoy ___ Python tracker ___ __

[issue7059] 'checking getaddrinfo bug' doesn't output the result during ./configure

2010-09-16 Thread Mark Lawrence
Mark Lawrence added the comment: Is this still a problem on Linux? -- nosy: +BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list m

[issue9876] ConfigParser can't interpolate values from other sections

2010-09-16 Thread Alexander Solovyov
New submission from Alexander Solovyov : Often it is useful to access some variable in other section for interpolation needs: for example, parent directory declared in common section could be used in configuration of certain components. Included patch can fix that (using syntax 'section.variab

[issue6893] defaultdict example in py3 doc should mention the new Counter class

2010-09-16 Thread Mark Lawrence
Changes by Mark Lawrence : -- assignee: georg.brandl -> d...@python nosy: +d...@python ___ Python tracker ___ ___ Python-bugs-list mail

[issue5667] Interpreter fails to initialize on build dir when IO encoding is one of CJK

2010-09-16 Thread Mark Lawrence
Mark Lawrence added the comment: Hum, a low priority interpreter core crash, would anyone like to comment? -- nosy: +BreamoreBoy ___ Python tracker ___ __

[issue5629] PEP 0 date and revision not being set

2010-09-16 Thread Mark Lawrence
Mark Lawrence added the comment: I assume that people are still interested in this? -- nosy: +BreamoreBoy ___ Python tracker ___ ___ P

[issue5309] setup.py doesn't parallelize extension module compilation

2010-09-16 Thread Mark Lawrence
Changes by Mark Lawrence : -- components: +Distutils2 -Distutils nosy: +eric.araujo versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Python tracker ___ __

[issue5033] setup.py crashes if sqlite version contains 'beta'

2010-09-16 Thread Mark Lawrence
Mark Lawrence added the comment: A one line fix is given in msg80370, can this be applied,should the issue be closed or what? -- nosy: +BreamoreBoy ___ Python tracker ___ __

[issue9874] Message.attach() loses empty attachments

2010-09-16 Thread R. David Murray
R. David Murray added the comment: Got your off-ticket email. I was hoping for something that *just* demonstrated the problem (just enough code to show the issue). It may be a bit before I can find the time to reduce your code to such a test case. -- stage: -> unit test needed ___

[issue4837] Omits MACHINE and DEBUG when building tix8.4.3

2010-09-16 Thread Mark Lawrence
Mark Lawrence added the comment: Is the attached patch still valid? -- nosy: +BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list

  1   2   >