[issue3762] platform.architecture() fails if python is lanched via its symbolic link (cygwin)

2008-09-03 Thread Hirokazu Yamamoto
New submission from Hirokazu Yamamoto <[EMAIL PROTECTED]>: I created symbolic link to python.exe as dummy.exe on cygwin. But I noticed platform.architecture() printed ('32bit', '') $ ./dummy Python 2.6b3+ (trunk:66166M, Sep 3 2008, 06:43:59) [GCC 3.4.4 (cygming special, gdc 0.12, using dmd 0.12

[issue3762] platform.architecture() fails if python is lanched via its symbolic link (cygwin)

2008-09-03 Thread Hirokazu Yamamoto
Hirokazu Yamamoto <[EMAIL PROTECTED]> added the comment: - But I noticed platform.architecture() printed ('32bit', '') + But I noticed platform.architecture() printed ('32bit', '') when I lanched python via dummy.exe -- components: +Library (Lib) ___

[issue3762] platform.architecture() fails if python is lanched via its symbolic link (cygwin)

2008-09-03 Thread Hirokazu Yamamoto
Hirokazu Yamamoto <[EMAIL PROTECTED]> added the comment: This sliped out of my mind. :-( [issue3719] >Python versions and must at least support Python 2.1. os.path.realpath is new feature in Python2.2, so probably this cannot be used. I attached another patch platform_v2.patch. -- keyw

[issue3763] Python 3.0 beta 2 : json and urllib not working together?

2008-09-03 Thread Swaroop
New submission from Swaroop <[EMAIL PROTECTED]>: Hi, Running the attached program in Python 3.0 beta 2 gives the following error: File "C:\Python30\lib\json\decoder.py", line 21, in linecol lineno = doc.count('\n', 0, pos) + 1 TypeError: expected an object with the buffer interface I can

[issue3763] Python 3.0 beta 2 : json and urllib not working together?

2008-09-03 Thread Swaroop
Swaroop <[EMAIL PROTECTED]> added the comment: Adding full traceback: $ python yahoo_search.py Traceback (most recent call last): File "yahoo_search.py", line 35, in for result in search(query)['Result']: File "yahoo_search.py", line 28, in search result = json.load(urllib.request.u

[issue3762] platform.architecture() fails if python is lanched via its symbolic link (cygwin)

2008-09-03 Thread Hirokazu Yamamoto
Changes by Hirokazu Yamamoto <[EMAIL PROTECTED]>: ___ Python tracker <[EMAIL PROTECTED]> ___ ___ Python-bugs-list mailing list Unsubscribe: http

[issue3726] Allow ', ' delimiters in logging.config.fileConfig()

2008-09-03 Thread Vinay Sajip
Vinay Sajip <[EMAIL PROTECTED]> added the comment: Fix checked into trunk (slightly modified version of patch). -- resolution: -> fixed status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> _

[issue3762] platform.architecture() fails if python is lanched via its symbolic link (cygwin)

2008-09-03 Thread Hirokazu Yamamoto
Changes by Hirokazu Yamamoto <[EMAIL PROTECTED]>: Added file: http://bugs.python.org/file11355/platform.patch ___ Python tracker <[EMAIL PROTECTED]> ___ ___

[issue3526] Customized malloc implementation on SunOS and AIX

2008-09-03 Thread Sébastien Sablé
Sébastien Sablé <[EMAIL PROTECTED]> added the comment: [sorry for the late reply, I have been on holidays] Martin: you are right that this memory is moved to swap and does not consume any "real" memory; however we decided to work on this patch because we observed on our application some performa

[issue2562] Cannot use non-ascii letters in disutils if setuptools is used.

2008-09-03 Thread Marc-Andre Lemburg
Marc-Andre Lemburg <[EMAIL PROTECTED]> added the comment: Removing Python 2.5 from the version list, since the patch may in some cases (e.g. using a different encoding than UTF-8) cause problems with existing setup.py files out there. The patch is not compatible with Python 3.0 for obvious reaso

[issue2562] Cannot use non-ascii letters in disutils if setuptools is used.

2008-09-03 Thread Tarek Ziadé
Tarek Ziadé <[EMAIL PROTECTED]> added the comment: Sure, sounds fine to me, thanks for the help on this issue ___ Python tracker <[EMAIL PROTECTED]> ___

[issue2562] Cannot use non-ascii letters in disutils if setuptools is used.

2008-09-03 Thread Marc-Andre Lemburg
Marc-Andre Lemburg <[EMAIL PROTECTED]> added the comment: Checked in as r66181 on trunk. -- status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> ___ __

[issue3764] asyncore differences between 2.x and 3.x

2008-09-03 Thread Giampaolo Rodola'
New submission from Giampaolo Rodola' <[EMAIL PROTECTED]>: I don't know if this is intentional but I point it out anyway in case this is wrong (as I think): asyncore.py of Python 2.6 trunk on line 104 contains: if flags & select.POLLHUP: obj.handle_close() ...while the pyth

[issue600362] relocate cgi.parse_qs() into urlparse

2008-09-03 Thread Senthil
Senthil <[EMAIL PROTECTED]> added the comment: Facundo, I have updated the patch against the trunk. Added the PendingDeprecationWarning for py26 and DeprecationWarning for py3k. All tests pass ok. Please verify and plan to apply this patch before rc1. Added file: http://bugs.python.org/file113

[issue600362] relocate cgi.parse_qs() into urlparse

2008-09-03 Thread Senthil
Changes by Senthil <[EMAIL PROTECTED]>: Added file: http://bugs.python.org/file11357/issue600362-py3k-v3.diff ___ Python tracker <[EMAIL PROTECTED]> ___ _

[issue600362] relocate cgi.parse_qs() into urlparse

2008-09-03 Thread Senthil
Changes by Senthil <[EMAIL PROTECTED]>: Removed file: http://bugs.python.org/file6/issue600362-py26-v2.diff ___ Python tracker <[EMAIL PROTECTED]> ___ ___

[issue600362] relocate cgi.parse_qs() into urlparse

2008-09-03 Thread Senthil
Changes by Senthil <[EMAIL PROTECTED]>: Removed file: http://bugs.python.org/file7/issue600362-py3k-v2.diff ___ Python tracker <[EMAIL PROTECTED]> ___ ___

[issue2200] find_executable fails to find .bat files on win32

2008-09-03 Thread anatoly techtonik
anatoly techtonik <[EMAIL PROTECTED]> added the comment: I've run into the same problem. Attached patch (updated with Lev code) is almost the same except that it doesn't attempt to return executable files without executable extension. It also accounts that os2 executables can have arbitrary ext

[issue2200] find_executable fails to find .bat files on win32

2008-09-03 Thread anatoly techtonik
Changes by anatoly techtonik <[EMAIL PROTECTED]>: Removed file: http://bugs.python.org/file11358/spawn.patch.txt ___ Python tracker <[EMAIL PROTECTED]> ___

[issue2200] find_executable fails to find .bat files on win32

2008-09-03 Thread anatoly techtonik
Changes by anatoly techtonik <[EMAIL PROTECTED]>: Added file: http://bugs.python.org/file11359/spawn.patch.txt ___ Python tracker <[EMAIL PROTECTED]> ___ __

[issue3724] math.log(x, 10) gives different result than math.log10(x)

2008-09-03 Thread Mark Dickinson
Mark Dickinson <[EMAIL PROTECTED]> added the comment: I can't really see a compelling reason to make this change---it seems like an unnecessary complication to add to what's currently a simple function. Someone who really needs the accuracy can just use log10. Perhaps a note in the documentatio

[issue1159425] 2.4 crashes when try to exit app and mulitple threads active

2008-09-03 Thread Christopher Nelson
Christopher Nelson <[EMAIL PROTECTED]> added the comment: I also experience this on a regular basis. I can't show you the code due to IP restrictions, but it happens almost 100% of the time in python 2.4.4 on win2k8, and frequently in win2k3. Error in atexit._run_exitfuncs: Traceback (most r

[issue3682] test_math: math.log(-ninf) fails to raise exception on OpenBSD

2008-09-03 Thread Mark Dickinson
Mark Dickinson <[EMAIL PROTECTED]> added the comment: It's possible that this patch would cause breakage on other systems: there's a reason that errno is currently ignored, which is that it can't be trusted on all systems (notably Linux: on one Linux system I've used of three different evaluatio

[issue3594] PyTokenizer_FindEncoding() never succeeds

2008-09-03 Thread Antoine Pitrou
Antoine Pitrou <[EMAIL PROTECTED]> added the comment: I don't understand the whole decoding machinery in the tokenizer, but the patch looks ok to me. (tested in debug mode under Linux and Windows) -- nosy: +pitrou ___ Python tracker <[EMAIL PROTECTED]

[issue3696] Error parsing arguments on OpenBSD <= 4.4

2008-09-03 Thread Antoine Pitrou
Antoine Pitrou <[EMAIL PROTECTED]> added the comment: Amaury, as long as you fix the small quirk mentioned above (checking the return value of the second call to mbstowcs()), I think this patch can go in, since it does no harm on already working platforms. ___

[issue3125] test_multiprocessing causes test_ctypes to fail

2008-09-03 Thread Jesse Noller
Jesse Noller <[EMAIL PROTECTED]> added the comment: Just to confirm this issue was resolved enough to be lowered from a blocker - I ran py3k tests in a loop for about 2+ hours. The fix applied in r65883 works well enough that the current implementation does not need to change. -- prio

[issue3110] Multiprocessing package build problem on Solaris 10

2008-09-03 Thread Jesse Noller
Jesse Noller <[EMAIL PROTECTED]> added the comment: Raising this to RB, we should not RC without the MP module properly compiling -- priority: high -> release blocker ___ Python tracker <[EMAIL PROTECTED]> _

[issue3763] Python 3.0 beta 2 : json and urllib not working together?

2008-09-03 Thread Senthil
Senthil <[EMAIL PROTECTED]> added the comment: On the code against the trunk, I am getting the following error: Traceback (most recent call last): File "python3k_json.py", line 38, in for result in search(query)['Result']: File "python3k_json.py", line 31, in search result = json.lo

[issue3658] fix for pychecker property complaints

2008-09-03 Thread Antoine Pitrou
Antoine Pitrou <[EMAIL PROTECTED]> added the comment: If it's only to please pychecker, then I don't think we should make this change. It's potential gratuitous breakage, especially if people subclass those classes. -- nosy: +pitrou ___ Python tracker

[issue3724] math.log(x, 10) gives different result than math.log10(x)

2008-09-03 Thread Raymond Hettinger
Raymond Hettinger <[EMAIL PROTECTED]> added the comment: Mark, thanks for the first review comments. Am also disturbed by the lack of generality and don't think it wise to introduce a discontinuity. Am rejecting this patch. Leaving the bug report open in case other solutions arise. --

[issue3110] Multiprocessing package build problem on Solaris 10

2008-09-03 Thread Antoine Pitrou
Antoine Pitrou <[EMAIL PROTECTED]> added the comment: I suggest committing a patch which falls back to _SEM_VALUE_MAX and see how the Solaris buildbot reacts. ___ Python tracker <[EMAIL PROTECTED]> ___

[issue3763] Python 3.0 beta 2 : json and urllib not working together?

2008-09-03 Thread Swaroop
Swaroop <[EMAIL PROTECTED]> added the comment: Hi Senthil, I am not aware of what encoding is used. An example of the content is http://search.yahooapis.com/WebSearchService/V1/webSearch?query=byte+of+python&appid=jl22psvV34HELWhdfUJbfDQzlJ2B57KFS_qs4I8D0Wz5U5_yCI1Awv8.lBSfPhwr&results=20&start

[issue3752] test_bsddb broken

2008-09-03 Thread Jesús Cea Avión
Jesús Cea Avión <[EMAIL PROTECTED]> added the comment: Solved in r66137 and r66138. -- resolution: -> accepted status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> ___ __

[issue3752] test_bsddb broken

2008-09-03 Thread Jesús Cea Avión
Changes by Jesús Cea Avión <[EMAIL PROTECTED]>: -- resolution: accepted -> fixed ___ Python tracker <[EMAIL PROTECTED]> ___ ___ Python-b

[issue3696] Error parsing arguments on OpenBSD <= 4.4

2008-09-03 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc <[EMAIL PROTECTED]> added the comment: Here is an updated patch: - changed #ifndef into #ifdef. The "broken" case comes first now. - check that the second call to mbstowcs does not fail. - also, changed an assert, since strlen() does not always count the exact number of chars

[issue3110] Multiprocessing package build problem on Solaris 10

2008-09-03 Thread Jesse Noller
Jesse Noller <[EMAIL PROTECTED]> added the comment: Anyone mind reviewing the attached patch? This should resolve the solaris compile issue. I used skip's suggested code - I removed the #ifdef solaris at AP's suggestion. -- keywords: +patch Added file: http://bugs.python.org/file11361/

[issue3673] bsddb module leaks memory

2008-09-03 Thread Jesús Cea Avión
Jesús Cea Avión <[EMAIL PROTECTED]> added the comment: Excellent work, Neal. Committed as r66182 and r66183. -- resolution: -> accepted status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> _

[issue3110] Multiprocessing package build problem on Solaris 10

2008-09-03 Thread Jesse Noller
Changes by Jesse Noller <[EMAIL PROTECTED]>: -- keywords: +needs review ___ Python tracker <[EMAIL PROTECTED]> ___ ___ Python-bugs-list

[issue3110] Multiprocessing package build problem on Solaris 10

2008-09-03 Thread Antoine Pitrou
Antoine Pitrou <[EMAIL PROTECTED]> added the comment: I recompiled and tested multiprocessing both under Windows and Linux with this patch, no problems detected. +1 for applying it. ___ Python tracker <[EMAIL PROTECTED]>

[issue3607] test_multiprocessing failure (Unserializable message)

2008-09-03 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc <[EMAIL PROTECTED]> added the comment: It seems that issue3125 follows the same problem; one of them could be closed IMO. Lowering priority as well. -- priority: release blocker -> high ___ Python tracker <[EMAIL PROTECTED]>

[issue3607] test_multiprocessing failure (Unserializable message)

2008-09-03 Thread Jesse Noller
Jesse Noller <[EMAIL PROTECTED]> added the comment: Closing as dupe to issue3125 -- resolution: -> duplicate status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> ___

[issue3618] possible deadlock in IO library (Lib/io.py)

2008-09-03 Thread Jesús Cea Avión
Changes by Jesús Cea Avión <[EMAIL PROTECTED]>: -- nosy: +jcea ___ Python tracker <[EMAIL PROTECTED]> ___ ___ Python-bugs-list mailing l

[issue3110] Multiprocessing package build problem on Solaris 10

2008-09-03 Thread Skip Montanaro
Skip Montanaro <[EMAIL PROTECTED]> added the comment: I can confirm that Jesse's patch allows multiprocessing to compile on Solaris 10. Note, however, that there are other symbolic constants defined which contain "SEM_VALUE_MAX", all with widely differing underlying values: % find /usr/incl

[issue3110] Multiprocessing package build problem on Solaris 10

2008-09-03 Thread Jesse Noller
Jesse Noller <[EMAIL PROTECTED]> added the comment: Skip - Richard has been unavailable a good chunk of the summer. I don't know when he will be online again. ___ Python tracker <[EMAIL PROTECTED]> __

[issue3110] Multiprocessing package build problem on Solaris 10

2008-09-03 Thread Jesse Noller
Jesse Noller <[EMAIL PROTECTED]> added the comment: I've committed the patch in r66184 on trunk, 66185 py3k. Skip raises a good point, therefore I'll leave this open but lower from a blocker. -- priority: release blocker -> high ___ Python tracker <[

[issue3473] In function call, keyword arguments could follow *args

2008-09-03 Thread Jesús Cea Avión
Changes by Jesús Cea Avión <[EMAIL PROTECTED]>: -- nosy: +jcea ___ Python tracker <[EMAIL PROTECTED]> ___ ___ Python-bugs-list mailing l

[issue3697] "Fatal Python error: Cannot recover from stack overflow" on Windows buildbots

2008-09-03 Thread Antoine Pitrou
Antoine Pitrou <[EMAIL PROTECTED]> added the comment: Committed in r66186 after review by Amaury on IRC. -- resolution: -> fixed status: open -> closed ___ Python tracker <[EMAIL PROTECTED]>

[issue3696] Error parsing arguments on OpenBSD <= 4.4

2008-09-03 Thread Antoine Pitrou
Antoine Pitrou <[EMAIL PROTECTED]> added the comment: Committed in r66187. Henry, could you confirm it fixes the problem on your side? -- priority: release blocker -> critical resolution: -> accepted status: open -> pending ___ Python tracker <[EMAIL

[issue3626] python3.0 interpreter on Cygwin ignores all arguments

2008-09-03 Thread Antoine Pitrou
Antoine Pitrou <[EMAIL PROTECTED]> added the comment: The mbstowcs problem should be fixed in r66187. What is the state of the other problems? Is this issue still a release blocker? -- nosy: +pitrou ___ Python tracker <[EMAIL PROTECTED]>

[issue3758] "make check" suggest a testing target under GNU coding standards

2008-09-03 Thread Brett Cannon
Brett Cannon <[EMAIL PROTECTED]> added the comment: Or how about ``make precommit``? -- priority: -> low ___ Python tracker <[EMAIL PROTECTED]> ___ ___

[issue3626] python3.0 interpreter on Cygwin ignores all arguments

2008-09-03 Thread Yaakov (Cygwin Ports)
Yaakov (Cygwin Ports) <[EMAIL PROTECTED]> added the comment: Thank you for the patch; that allows the build to finish. The remaining issues are now: msg72029: printf("%ls",...) bug msg72044: does not build with db4.7 Finally proceeding to the install, now I get another error: mkdir ./Lib/plat

[issue3765] [patch] allow mmap take file offset as argument

2008-09-03 Thread Christopher Li
New submission from Christopher Li <[EMAIL PROTECTED]>: The os.mmap function does not take file offset as requirement. As a result, if python want to mmap a piece of the file data at the very end of the file, it needs to mmap the every thing before that. Without offset argument, it is hard to wo

[issue2744] Fix test_cProfile

2008-09-03 Thread Brett Cannon
Brett Cannon <[EMAIL PROTECTED]> added the comment: So is this going to be a 3.1 issue or a 3.0 one? If it's the former then it should not be a release blocker. But if is going to be for 3.0 then the version list is wrong. ___ Python tracker <[EMAIL PROTECTED]

[issue3758] "make check" suggest a testing target under GNU coding standards

2008-09-03 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: That suggests that it only need to run by committers. I find it useful, just for the reindenting whenever I'm writing a patch. ___ Python tracker <[EMAIL PROTECTED]> __

[issue1923] meaningful whitespace can be lost in rfc822_escape

2008-09-03 Thread Simon Cross
Simon Cross <[EMAIL PROTECTED]> added the comment: Poking the issue. ___ Python tracker <[EMAIL PROTECTED]> ___ ___ Python-bugs-list mailing list

[issue3594] PyTokenizer_FindEncoding() never succeeds

2008-09-03 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: The patch also looks pretty harmless to me. :) -- nosy: +benjamin.peterson ___ Python tracker <[EMAIL PROTECTED]> ___ _

[issue3764] asyncore differences between 2.x and 3.x

2008-09-03 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- assignee: -> josiahcarlson ___ Python tracker <[EMAIL PROTECTED]> ___ ___ Python-b

[issue3763] Python 3.0 beta 2 : json and urllib not working together?

2008-09-03 Thread Antoine Pitrou
Antoine Pitrou <[EMAIL PROTECTED]> added the comment: If you look at the headers of HTTP response, the encoding is utf-8. You should also be able to get this information by calling the info() method on the return value of urlopen(). -- nosy: +pitrou _

[issue3590] sax.parser considers XML as text rather than bytes

2008-09-03 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: This is a duplicate of #2501. -- resolution: -> duplicate status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> __

[issue3724] math.log(x, 10) gives different result than math.log10(x)

2008-09-03 Thread Florian Mayer
Florian Mayer <[EMAIL PROTECTED]> added the comment: Uploaded small documentation patch warning the user of math.log(x, 10) inaccuracy. Added file: http://bugs.python.org/file11362/math_doc.patch ___ Python tracker <[EMAIL PROTECTED]>

[issue3724] math.log(x, 10) gives different result than math.log10(x)

2008-09-03 Thread Raymond Hettinger
Changes by Raymond Hettinger <[EMAIL PROTECTED]>: -- assignee: marketdickinson -> rhettinger ___ Python tracker <[EMAIL PROTECTED]> ___

[issue3766] socket.socket.recv broken (unbearably slow)

2008-09-03 Thread Thorben Krueger
New submission from Thorben Krueger <[EMAIL PROTECTED]>: Under Linux 2.6.24-1-amd64 as well as 2.6.26 (x86-32), Python versions 2.5.2 and 2.4.4 (on both machines), there is a huge discrepancy between socket read latencies, depending on "code context". Some detail: For a university project, I wr

[issue3767] tkColorChooser may fail if no color is selected

2008-09-03 Thread Guilherme Polo
New submission from Guilherme Polo <[EMAIL PROTECTED]>: Chooser._fixresult in the tkColorChooser module uses "if not result" to check if user canceled the dialog, but nowadays Tk may return a cached object that contains the result we are after, so, this object will not simply evaluate to false an

[issue3768] Move test_py3kwarn over to new catch_warnings API

2008-09-03 Thread Brett Cannon
New submission from Brett Cannon <[EMAIL PROTECTED]>: test_py3kwarn was using the old API presented by catch_warnings. The attached patch fixes it to use the new one. -- components: Library (Lib) files: fix_py3kwarn.diff keywords: needs review, patch, patch messages: 72426 nosy: brett.ca

[issue3768] Move test_py3kwarn over to new catch_warnings API

2008-09-03 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Looks straightforward; go ahead. -- nosy: +benjamin.peterson ___ Python tracker <[EMAIL PROTECTED]> ___ ___

[issue1658] "RuntimeError: dictionary changed size during iteration" in Tkinter

2008-09-03 Thread Guilherme Polo
Guilherme Polo <[EMAIL PROTECTED]> added the comment: Can someone review the patch and apply please ? It is sad to leave tkinter like this in py3k. Clearly there are not much people using it there, but it is something very simple to fix. -- keywords: +needs review __

[issue3768] Move test_py3kwarn over to new catch_warnings API

2008-09-03 Thread Brett Cannon
Brett Cannon <[EMAIL PROTECTED]> added the comment: Done in r66197 on the trunk with the Py3K block in r66198. -- resolution: -> accepted status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> ___

[issue600362] relocate cgi.parse_qs() into urlparse

2008-09-03 Thread Facundo Batista
Facundo Batista <[EMAIL PROTECTED]> added the comment: Commited in r66196 and r66199, this went into 2.6/3.0 rc1!! Thank you all for the effort! -- resolution: -> fixed status: open -> closed ___ Python tracker <[EMAIL PROTECTED]>

[issue3769] Deprecate bsddb for removal in 3.0

2008-09-03 Thread Brett Cannon
New submission from Brett Cannon <[EMAIL PROTECTED]>: Attached is a patch that deprecates bsddb for removal in 3.0. -- components: Library (Lib) files: deprecate_bsddb.diff keywords: needs review, patch, patch messages: 72431 nosy: brett.cannon priority: release blocker severity: normal

[issue3769] Deprecate bsddb for removal in 3.0

2008-09-03 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: I also think you need to deprecate the dbhash module. -- nosy: +benjamin.peterson ___ Python tracker <[EMAIL PROTECTED]> __

[issue3769] Deprecate bsddb for removal in 3.0

2008-09-03 Thread Skip Montanaro
Skip Montanaro <[EMAIL PROTECTED]> added the comment: Remind me why we want to get rid of bsddb? Skip -- nosy: +skip.montanaro ___ Python tracker <[EMAIL PROTECTED]> ___ _

[issue3769] Deprecate bsddb for removal in 3.0

2008-09-03 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: On Wed, Sep 3, 2008 at 6:20 PM, Skip Montanaro <[EMAIL PROTECTED]> wrote: > > Skip Montanaro <[EMAIL PROTECTED]> added the comment: > > Remind me why we want to get rid of bsddb? The reasons are enumerated in PEP 3108. > > Skip > > ---

[issue3769] Deprecate bsddb for removal in 3.0

2008-09-03 Thread Raymond Hettinger
Raymond Hettinger <[EMAIL PROTECTED]> added the comment: I thought someone stepped forward to maintain this package. -- nosy: +rhettinger ___ Python tracker <[EMAIL PROTECTED]> ___

[issue3769] Deprecate bsddb for removal in 3.0

2008-09-03 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Also see this: http://mail.python.org/pipermail/python-3000/2008-September/014712.html ___ Python tracker <[EMAIL PROTECTED]> ___ __

[issue3769] Deprecate bsddb for removal in 3.0

2008-09-03 Thread Brett Cannon
Changes by Brett Cannon <[EMAIL PROTECTED]>: Removed file: http://bugs.python.org/file11366/deprecate_bsddb.diff ___ Python tracker <[EMAIL PROTECTED]> ___

[issue3769] Deprecate bsddb for removal in 3.0

2008-09-03 Thread Brett Cannon
Brett Cannon <[EMAIL PROTECTED]> added the comment: New patch to also deprecated dbhash. Added file: http://bugs.python.org/file11367/deprecate_bsddb.diff ___ Python tracker <[EMAIL PROTECTED]> __

[issue3769] Deprecate bsddb for removal in 3.0

2008-09-03 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- nosy: +barry ___ Python tracker <[EMAIL PROTECTED]> ___ ___ Python-bugs-list mailin

[issue3769] Deprecate bsddb for removal in 3.0

2008-09-03 Thread Raymond Hettinger
Raymond Hettinger <[EMAIL PROTECTED]> added the comment: I think this should be deferred to Py3.1. This decision was not widely discussed and I think it likely that some users will be surprised and dismayed. The release candidate seems to be the wrong time to yank this out (in part because of

[issue3565] array documentation, method names not 3.0 compliant

2008-09-03 Thread Matt Giuca
Matt Giuca <[EMAIL PROTECTED]> added the comment: Can I just remind people that I have a documentation patch ready here (and has been for about a month)? Of course the doc+bytesmethods.patch may be debatable and probably too late to go in 3.0. But you should be able to commit doc-only.patch with

[issue3585] pkg-config support

2008-09-03 Thread Clinton Roy
Clinton Roy <[EMAIL PROTECTED]> added the comment: This version sets Libs.private for static compiles. Any chance this will make it into the 2.6/3.0 release candidates ? cheers, Added file: http://bugs.python.org/file11368/pkgconfig.diff ___ Python tracker

[issue3769] Deprecate bsddb for removal in 3.0

2008-09-03 Thread Brett Cannon
Brett Cannon <[EMAIL PROTECTED]> added the comment: On Wed, Sep 3, 2008 at 4:41 PM, Raymond Hettinger <[EMAIL PROTECTED]> wrote: > I think this should be deferred to Py3.1. > This decision was not widely discussed and I think it likely that some users > will > be surprised and dismayed. Perhaps,

[issue3770] test_multiprocessing fails on systems with HAVE_SEM_OPEN=0

2008-09-03 Thread Damien Miller
New submission from Damien Miller <[EMAIL PROTECTED]>: test_multiprocessing crashes on platforms that lack a working sem_open(), despite it being turned off at compilation time by setting HAVE_SEM_OPEN=0 in the Extension macros in setup.py I think the multiprocessing module should disable the fu

[issue3771] test_httpservers intermittent failure

2008-09-03 Thread Damien Miller
New submission from Damien Miller <[EMAIL PROTECTED]>: On OpenBSD I'm seeing intermittent failures of test_httpservers with the following error: test_post (test.test_httpservers.CGIHTTPServerTestCase) ... ERROR == ERROR: test_p

[issue3770] test_multiprocessing fails on systems with HAVE_SEM_OPEN=0

2008-09-03 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- assignee: -> jnoller nosy: +jnoller ___ Python tracker <[EMAIL PROTECTED]> ___ ___

[issue2876] Write UserDict fixer for 2to3

2008-09-03 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- priority: release blocker -> deferred blocker ___ Python tracker <[EMAIL PROTECTED]> ___ __

[issue3279] import of site.py fails on startup

2008-09-03 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- priority: release blocker -> deferred blocker ___ Python tracker <[EMAIL PROTECTED]> ___ __

[issue3769] Deprecate bsddb for removal in 3.0

2008-09-03 Thread Raymond Hettinger
Raymond Hettinger <[EMAIL PROTECTED]> added the comment: >> I think this should be deferred to Py3.1. >> This decision was not widely discussed and I think >> it likely that some users will be surprised and dismayed. > Perhaps, but that could be said about almost any module > that has been rem

[issue2350] 'exceptions' import fixer

2008-09-03 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- priority: release blocker -> deferred blocker ___ Python tracker <[EMAIL PROTECTED]> ___ __

[issue1251] ssl module doesn't support non-blocking handshakes

2008-09-03 Thread Bill Janssen
Bill Janssen <[EMAIL PROTECTED]> added the comment: Thanks. If you can identify a specific bug, I'll take a look at it. ___ Python tracker <[EMAIL PROTECTED]> ___ _

[issue3642] Objects/obmalloc.c:529: warning: comparison is always false due to limited range of data type

2008-09-03 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- priority: release blocker -> deferred blocker ___ Python tracker <[EMAIL PROTECTED]> ___ __

[issue3723] Py_NewInterpreter does not work

2008-09-03 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- priority: release blocker -> deferred blocker ___ Python tracker <[EMAIL PROTECTED]> ___ __

[issue3659] sqlite: enumeration value 'TYPE_STRING' not handled in switch

2008-09-03 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- priority: release blocker -> critical ___ Python tracker <[EMAIL PROTECTED]> ___ __

[issue3628] IDLE does not run with Py30b3

2008-09-03 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- priority: release blocker -> deferred blocker ___ Python tracker <[EMAIL PROTECTED]> ___ __

[issue3597] Allow application developers to select ciphers, and default to strong in ssl lib

2008-09-03 Thread Bill Janssen
Bill Janssen <[EMAIL PROTECTED]> added the comment: I'm afraid you're ahead of me in knowledge here. I've experimented with the ciphers a bit, but there seem to be various compatibility issues. I finally decided to let the OpenSSL folks and various standard groups worry about this; the designat

[issue2443] uninitialized access to va_list

2008-09-03 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- priority: release blocker -> critical ___ Python tracker <[EMAIL PROTECTED]> ___ __

[issue3666] atexit.register with bad input segfaults on exit

2008-09-03 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- priority: release blocker -> deferred blocker ___ Python tracker <[EMAIL PROTECTED]> ___ __

[issue3664] Pickler.dump from a badly initialized Pickler segfaults

2008-09-03 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- priority: release blocker -> deferred blocker ___ Python tracker <[EMAIL PROTECTED]> ___ __

[issue3596] Provide a way to disable SSLv2 (or better yet, disable by default)

2008-09-03 Thread Bill Janssen
Bill Janssen <[EMAIL PROTECTED]> added the comment: We might consider this for 3.x. We didn't want to do this for 2.6, to maintain compatibility with the older socket.ssl module in Python. -- nosy: +janssen ___ Python tracker <[EMAIL PROTECTED]>

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

2008-09-03 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- priority: release blocker -> deferred blocker ___ Python tracker <[EMAIL PROTECTED]> ___ __

[issue3618] possible deadlock in IO library (Lib/io.py)

2008-09-03 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- priority: release blocker -> critical ___ Python tracker <[EMAIL PROTECTED]> ___ __

  1   2   >