[issue15750] test_localtime_daylight_false_dst_true raises OverflowError: mktime argument out of range

2012-08-20 Thread Trent Nelson
Trent Nelson added the comment: All my servers are set to use UTC, which affects how FreeBSD (and other BSDs) treat the isdst param in struct tm in mktime: #include #include #include int main(int argc, char **argv) { struct tm tm1, tm2; time_t t1, t2; memset((void *)&tm1, 0, s

[issue15736] Crash #2 (constructed overflow) in _PySequence_BytesToCharpArray()

2012-08-20 Thread Stefan Krah
Stefan Krah added the comment: I used the cast for gcc >= 4.6 and the assert() as a courtesy to authors of buggy sq_length() functions. Thanks for the comments! -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed

[issue15736] Crash #2 (constructed overflow) in _PySequence_BytesToCharpArray()

2012-08-20 Thread Roundup Robot
Roundup Robot added the comment: New changeset dbbf3ccf72e8 by Stefan Krah in branch '3.2': Issue #15736: Fix overflow in _PySequence_BytesToCharpArray(). http://hg.python.org/cpython/rev/dbbf3ccf72e8 -- nosy: +python-dev ___ Python tracker

[issue15740] test_ssl failure when cacert.org CA cert in system keychain on OSX

2012-08-20 Thread Ronald Oussoren
Ronald Oussoren added the comment: More interesingly are the download archives for OpenSSL098, which is the openssl version that's used on newer OSX releases. Sadly enough the version used on OSX 10.8 is not present there (that seems to be OpenSSL098-47, the latest download is -35). Download

[issue15750] test_localtime_daylight_false_dst_true raises OverflowError: mktime argument out of range

2012-08-20 Thread Trent Nelson
Trent Nelson added the comment: Narrowed it down to the following snippet: >>> time.mktime((2012, 3, 12, 1, 1, 0, 0, 72, -1)) 1331514060.0 [70780 refs] >>> time.mktime((2012, 3, 12, 1, 1, 0, 0, 72, 1)) Traceback (most recent call last): File "", line 1, in OverflowError: mktime argument out

[issue15751] Add PyGILState_SwitchInterpreter

2012-08-20 Thread Nick Coghlan
New submission from Nick Coghlan: Currently, modules that use the PyGILState* APIs cannot be used with mod_wsgi, as mod_wsgi uses the subinterpreter support. Graham Dumpleton and I spent some time discussing this at PyCon AU 2012, and we believe that the incompatibility can be resolved with a

[issue15750] test_localtime_daylight_false_dst_true raises OverflowError: mktime argument out of range

2012-08-20 Thread Trent Nelson
New submission from Trent Nelson: On the FreeBSD 8.2 build slave: == ERROR: test_localtime_daylight_false_dst_true (test_utils.LocaltimeTests) -- Traceback (mos

[issue15740] test_ssl failure when cacert.org CA cert in system keychain on OSX

2012-08-20 Thread Ronald Oussoren
Ronald Oussoren added the comment: Antoine: Apple almost certainly has hacked their copy of OpenSSL, they do so for other libraries (including python) as well. Apple does not ship CAcerts root certificate, I've added it to the System Keychain on my machine because I use a number of machines th

[issue15747] Various chflags tests failing on FreeBSD/ZFS

2012-08-20 Thread Trent Nelson
Trent Nelson added the comment: Turns out ZFS doesn't support any of the traditional chflags flags -- it returns EOPNOTSUPP for all of them. Attached patch factors this into the various chflags tests. -- keywords: +patch stage: -> patch review Added file: http://bugs.python.org/file26

[issue15740] test_ssl failure when cacert.org CA cert in system keychain on OSX

2012-08-20 Thread Ronald Oussoren
Ronald Oussoren added the comment: What's rather annoying is that I cannot find OpenSSL on opensource.apple.com, which means we cannot check if they use patches add functionality that our users would like to have. One such feature is likely keychain integration (that is, use the CA roots from

[issue15645] 2to3 Grammar pickles not created when upgrading to 3.3.0b2

2012-08-20 Thread Ned Deily
Ned Deily added the comment: Patch LGTM and I verified that it does indeed install the pickles properly on both a vanilla Linux build/install and with an OS X framework build/install. (Note that, as expected, previously installed versioned pickles in the install library directory are not remov

[issue15739] Python crashes with "Bus error: 10"

2012-08-20 Thread Ronald Oussoren
Ronald Oussoren added the comment: The stack size problem was issue #9670. -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue15749] cgitb prints html for text when display disabled.

2012-08-20 Thread aliles
New submission from aliles: If cgitb has been enabled to format as text but suppress the display, the output is formated as html. (Prefixed with ) >>> gitb.enable(display=0, format='txt') >>> raise ValueError('Oops!') A problem occurred in a Python script. The patch changes the prefix used

[issue15739] Python crashes with "Bus error: 10"

2012-08-20 Thread Apple Grew
Apple Grew added the comment: Thanks. I tested with 2.7.3 (macport) and it indeed works. -- ___ Python tracker ___ ___ Python-bugs-lis

[issue15740] test_ssl failure when cacert.org CA cert in system keychain on OSX

2012-08-20 Thread Ned Deily
Ned Deily added the comment: As Ronald is aware, there is also the issue that Apple has deprecated use of OpenSSL in OS X: "Although OpenSSL is commonly used in the open source community, OpenSSL does not provide a stable API from version to version. For this reason, although OS X provides Op

[issue3132] implement PEP 3118 struct changes

2012-08-20 Thread Alexander Belopolsky
Changes by Alexander Belopolsky : -- nosy: +belopolsky -Alexander.Belopolsky ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue14130] memoryview: add multi-dimensional indexing and slicing

2012-08-20 Thread Alexander Belopolsky
Changes by Alexander Belopolsky : -- nosy: +belopolsky ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://m

[issue12834] memoryview.to_bytes() and PyBuffer_ToContiguous() incorrect for non-contiguous arrays

2012-08-20 Thread Alexander Belopolsky
Changes by Alexander Belopolsky : -- nosy: +belopolsky ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://m

[issue15739] Python crashes with "Bus error: 10"

2012-08-20 Thread Ned Deily
Ned Deily added the comment: I believe the issue Ronald is referring to is Issue9670. I tried your test program with a current MacPorts Python 2.7.3 and Django 1.4 and, as Ross saw, it failed gracefully with a "maximum recursion depth exceeded while calling a Python object" exception. Note i

[issue15748] Various symlink test failures in test_shutil on FreeBSD

2012-08-20 Thread Trent Nelson
New submission from Trent Nelson: FreeBSD slaves are running into this: == ERROR: test_copy2_symlinks (test.test_shutil.TestShutil) -- Traceback (most recent c

[issue15747] Various chflags tests failing on FreeBSD/ZFS

2012-08-20 Thread Trent Nelson
New submission from Trent Nelson: Both of my FreeBSD ZFS slaves (8.2 and 9.1) have chflags tests failing as follows: == ERROR: test_chflags (test.test_posix.PosixTester) -

[issue15746] test_winsound bombing out on 2003 buildslave

2012-08-20 Thread Trent Nelson
New submission from Trent Nelson: The 'Windows Server 2003 R2 SP1' build slave I set up keeps bombing out on test_winsound: == FAIL: test_alias_nofallback (test.test_winsound.PlaySoundTest)

[issue15745] Numerous utime ns tests fail on FreeBSD w/ ZFS

2012-08-20 Thread Trent Nelson
New submission from Trent Nelson: I've got two FreeBSD buildslaves running on ZFS (8.2 and 9.1) experiencing this: == FAIL: test_futimes_ns (test.test_os.StatAttributeTests) --

[issue15285] test_timeout failure when system on IPv4 10.x.x.x subnet

2012-08-20 Thread Trent Nelson
Trent Nelson added the comment: Fixed in 3.2: changeset: 78690:9c2af1f9 branch: 3.2 parent: 78686:8600ae913b63 user:Trent Nelson date:Mon Aug 20 21:22:59 2012 -0400 summary: Issue #15285: Refactor connect timeout test in test_timeout. Fixed in 3.x: changes

[issue15285] test_timeout failure when system on IPv4 10.x.x.x subnet

2012-08-20 Thread Roundup Robot
Roundup Robot added the comment: New changeset 9c2af1f9 by Trent Nelson in branch '3.2': Issue #15285: Refactor connect timeout test in test_timeout. http://hg.python.org/cpython/rev/9c2af1f9 New changeset b86f3af4746c by Trent Nelson in branch 'default': Issue #15285: Refactor connect t

[issue1228112] code.py use sys.excepthook to display exceptions

2012-08-20 Thread Miki Tebeka
Miki Tebeka added the comment: Seems like #12643 did solve this. Closing. -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___

[issue15285] test_timeout failure when system on IPv4 10.x.x.x subnet

2012-08-20 Thread Trent Nelson
Changes by Trent Nelson : -- assignee: -> trent ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue15740] test_ssl failure when cacert.org CA cert in system keychain on OSX

2012-08-20 Thread Antoine Pitrou
Antoine Pitrou added the comment: > The failure seems to occur because the test assumes that the OpenSSL > library either won't load a CA list at all when ca_cert is not > specified, or that the default CA list doesn't contain the cacert.org one. Well, OpenSSL should not implicitly load a CA lis

[issue14563] Segmentation fault on ctypes.Structure subclass with byte string field names

2012-08-20 Thread aliles
aliles added the comment: Tested with Python 3.3b2 built from trunk. This issue is resolved. -- resolution: -> fixed status: open -> closed ___ Python tracker ___ __

[issue1228112] code.py use sys.excepthook to display exceptions

2012-08-20 Thread aliles
aliles added the comment: Has this issue been resolved by issue been resolved by #12643, which has been merged for Python 3.3? -- nosy: +aliles, ncoghlan ___ Python tracker __

[issue7741] Allow multiple statements in code.InteractiveConsole.push

2012-08-20 Thread aliles
aliles added the comment: A quick note regarding the last two patches submitted. These patches add unit tests using the test suite added for Issue #12643. This limits the patches suitable to Python 3.3 and up. -- nosy: +ncoghlan ___ Python tracker

[issue7741] Allow multiple statements in code.InteractiveConsole.push

2012-08-20 Thread aliles
aliles added the comment: Patch option 2 of 2. Alternative patch that adds a new method to InteractiveConsole to split the string into multiple lines, feeding each line to interpreter using push(). This doesn't change the behaviour regarding the displayhook. But this may not meet Kristjan's o

[issue7741] Allow multiple statements in code.InteractiveConsole.push

2012-08-20 Thread aliles
aliles added the comment: Patch option 1 of 2. Incorporates Kristjan's patch and adds unit tests. This has the side effect of changing InteractiveConsole's behaviour with respect to displayhook(). I'm unsure if this is desirable. -- nosy: +aliles Added file: http://bugs.python.org/fil

[issue9762] PEP 3149 related build failures

2012-08-20 Thread Stephen M McQuay
Stephen M McQuay added the comment: I cobbled together a mix of what I found here: http://ubuntuforums.org/showthread.php?t=1976837 http://blog.schmichael.com/2012/05/29/building-python-2-6-8-on-ubuntu-12-04/ and got python 2.6 to build fine on modern Ubuntu : % python -mplatform Linux-3.2.0-2

[issue15733] PEP 3121, 384 Refactoring applied to winapi module

2012-08-20 Thread Richard Oudkerk
Richard Oudkerk added the comment: > In addition, I plan to actively drop Windows 2000 support post 3.3, so > CancelIO can be presumed to be present. The function at issue is CancelIoEx() (introduced in Vista) not CancelIo(). I assume WinXP will still be supported? -- ___

[issue14468] Update cloning guidelines in devguide

2012-08-20 Thread Ezio Melotti
Ezio Melotti added the comment: You could mention "hg out" where you talk about pushing all the changes. About hg graft, I would assume that most of the patches grafted from 3.x don't work right away on 2.7, or if the graft work the code might still need to be changed. How do you deal with th

[issue14468] Update cloning guidelines in devguide

2012-08-20 Thread Chris Jerdonek
Chris Jerdonek added the comment: > I think the aim of that part of the devguide is to give one clear, simple, > working way to operate on different branches at the same time. The change can be as simple as adding a sentence along the lines of, "Also see the version control section of the FAQ

[issue14468] Update cloning guidelines in devguide

2012-08-20 Thread Sandro Tosi
Sandro Tosi added the comment: I think the aim of that part of the devguide is to give one clear, simple, working way to operate on different branches at the same time. Additional workflows can be presented, but probably in another place (like the FAQ indeed). What others thing about this? --

[issue14468] Update cloning guidelines in devguide

2012-08-20 Thread Antoine Pitrou
Antoine Pitrou added the comment: Sandro, I find your patch is really a regression: -* Then clone it to create another local repository which is then used to - checkout branch 3.2:: +* Then clone it to create another local repository for the 3.2 branch:: This makes the terminology ambiguous.

[issue14468] Update cloning guidelines in devguide

2012-08-20 Thread Chris Jerdonek
Chris Jerdonek added the comment: It might be worth mentioning and/or linking to some of the branching tips discussed in the FAQ. For example, using `hg share` instead of `hg clone` eliminates the need to pull between repositories/working directories: http://docs.python.org/devguide/faq.html

[issue14954] weakref doc clarification

2012-08-20 Thread Antoine Pitrou
Antoine Pitrou added the comment: This is good, thank you. -- nosy: +pitrou resolution: -> fixed stage: -> committed/rejected status: open -> closed versions: +Python 3.2 ___ Python tracker __

[issue14954] weakref doc clarification

2012-08-20 Thread Roundup Robot
Roundup Robot added the comment: New changeset 8600ae913b63 by Antoine Pitrou in branch '3.2': Issue #14954: Clarify the interaction of weak references and garbage collection. http://hg.python.org/cpython/rev/8600ae913b63 New changeset 57c9ed276332 by Antoine Pitrou in branch 'default': Issue #1

[issue14617] confusing docs with regard to __hash__

2012-08-20 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +ncoghlan ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue15744] missing tests for {RawIO,BufferedIO,TextIO}.writelines

2012-08-20 Thread Antoine Pitrou
New submission from Antoine Pitrou: The writelines() method of I/O objects has almost no tests in test_fileio / test_io (and a couple of them in test_file). -- components: IO, Tests messages: 168709 nosy: pitrou priority: normal severity: normal stage: needs patch status: open title: mi

[issue12415] Missing: How to checkout the Doc sources

2012-08-20 Thread Sandro Tosi
Sandro Tosi added the comment: Éric: I've just committed your patch, with also the latest changes. Philip: In order to be consistent with the way the documentation is compiled on the Python platform, the svn checkout must be used: else if you refer to the upstream website, a contributor can ch

[issue14617] confusing docs with regard to __hash__

2012-08-20 Thread Ethan Furman
Ethan Furman added the comment: Any problems with the current doc patch? If not, can it be applied before RC1? -- ___ Python tracker ___

[issue12415] Missing: How to checkout the Doc sources

2012-08-20 Thread Roundup Robot
Roundup Robot added the comment: New changeset e0d68c73e351 by Sandro Tosi in branch 'default': Issue #12415: describe where the documentation files are (patch by Éric Araujo) http://hg.python.org/devguide/rev/e0d68c73e351 -- nosy: +python-dev ___ Pyt

[issue14954] weakref doc clarification

2012-08-20 Thread Ethan Furman
Ethan Furman added the comment: Any problems with the current doc patch? If not, can it be applied before RC1? -- ___ Python tracker ___

[issue15209] Re-raising exceptions from an expression

2012-08-20 Thread Ethan Furman
Ethan Furman added the comment: Any problems with the current doc patch? If not, can it be applied before RC1? -- ___ Python tracker ___

[issue13799] Base 16 should be hexadecimal in Unicode HOWTO

2012-08-20 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- resolution: -> rejected stage: -> committed/rejected status: open -> closed ___ Python tracker ___ __

[issue15645] 2to3 Grammar pickles not created when upgrading to 3.3.0b2

2012-08-20 Thread Terry J. Reedy
Terry J. Reedy added the comment: If necessary, ask on pydev. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue14468] Update cloning guidelines in devguide

2012-08-20 Thread Sandro Tosi
Sandro Tosi added the comment: Hi Ezio, thanks for the review: how about this new version of the patch? I've left the more "verbose" version in the 3.2 example, while used the more compact way for the 2.7 . Re first committing to 2.7 then 3.2 and then merge, that would work for doc patches, b

[issue15739] Python crashes with "Bus error: 10"

2012-08-20 Thread Ronald Oussoren
Ronald Oussoren added the comment: The bug report mentions python 2.7.1. Could you try to reproduce using the most recent release, or a fresh checkout? The reason I ask this is that the crash report has a deeply nested call stack and there used to be a bug where new threads were created with

[issue15743] test_urllib2/test_urllib use deprecated urllib.Request methods

2012-08-20 Thread Roundup Robot
Roundup Robot added the comment: New changeset 9b28dff66ac3 by Senthil Kumaran in branch 'default': Fix Issue 15743 - improve urllib tests by removing deprecated method usages. Patch by Jeff Knupp. http://hg.python.org/cpython/rev/9b28dff66ac3 -- nosy: +python-dev _

[issue15739] Python crashes with "Bus error: 10"

2012-08-20 Thread Ross Lagerwall
Ross Lagerwall added the comment: Sorry, I didn't mean that it's impossible; I meant that it shouldn't happen and it should be fixed :-) Unfortunately I don't have access to an OS X box to test. -- ___ Python tracker

[issue15743] test_urllib2/test_urllib use deprecated urllib.Request methods

2012-08-20 Thread Jeff Knupp
Jeff Knupp added the comment: Yes, that was part of the original patch which was incorrectly uploaded. The current patch (2) should be correct wrt get_method. -- ___ Python tracker

[issue15743] test_urllib2/test_urllib use deprecated urllib.Request methods

2012-08-20 Thread Senthil Kumaran
Senthil Kumaran added the comment: One change. get_method has only been changed not deprecated. Those test cases should not change and moreover the current change to assert against .method results in a failure too. get_method would return "GET" when .method is None or empty. --

[issue15743] test_urllib2/test_urllib use deprecated urllib.Request methods

2012-08-20 Thread Jeff Knupp
Jeff Knupp added the comment: Senthil, sorry, missed your comment and hadn't realized anyone had seen the patch yet. I replaced it with an updated version (had missed a few places deprecated functions were used). Could you review the new patch instead? -- _

[issue15743] test_urllib2/test_urllib use deprecated urllib.Request methods

2012-08-20 Thread Jeff Knupp
Jeff Knupp added the comment: Updated with correct patch file. -- Added file: http://bugs.python.org/file26936/test_urllib.patch.2 ___ Python tracker ___

[issue15743] test_urllib2/test_urllib use deprecated urllib.Request methods

2012-08-20 Thread Jeff Knupp
Changes by Jeff Knupp : Removed file: http://bugs.python.org/file26935/test_urllib.patch ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue15743] test_urllib2/test_urllib use deprecated urllib.Request methods

2012-08-20 Thread Senthil Kumaran
Senthil Kumaran added the comment: The patch looks good to me. Thanks Jeff. -- ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue15743] test_urllib2/test_urllib use deprecated urllib.Request methods

2012-08-20 Thread Senthil Kumaran
Changes by Senthil Kumaran : -- assignee: -> orsenthil nosy: +orsenthil ___ Python tracker ___ ___ Python-bugs-list mailing list Unsu

[issue15743] test_urllib2/test_urllib use deprecated urllib.Request methods

2012-08-20 Thread Jeff Knupp
Jeff Knupp added the comment: Attaching patch. -- keywords: +patch Added file: http://bugs.python.org/file26935/test_urllib.patch ___ Python tracker ___ _

[issue15743] test_urllib2/test_urllib use deprecated urllib.Request methods

2012-08-20 Thread Jeff Knupp
New submission from Jeff Knupp: urllib was updated to deprecate a number of Request methods for 3.3. The test_urllib2 and test_urllib tests still use some of the deprecated methods. -- components: Tests messages: 168692 nosy: Jeff.Knupp priority: normal severity: normal status: open tit

[issue15736] Crash #2 (constructed overflow) in _PySequence_BytesToCharpArray()

2012-08-20 Thread Stefan Krah
Stefan Krah added the comment: Bad news: gcc-4.6.3 needs the size_t cast, otherwise it warns with both the assert() and the (argc < 0) version. So I suggest using the size_t cast and a comment. -- ___ Python tracker

[issue15199] Default mimetype for javascript should be application/javascript

2012-08-20 Thread Petri Lehtinen
Petri Lehtinen added the comment: Fixed, thanks for the patch. -- nosy: +petri.lehtinen resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker

[issue15199] Default mimetype for javascript should be application/javascript

2012-08-20 Thread Roundup Robot
Roundup Robot added the comment: New changeset 20985f52b65e by Petri Lehtinen in branch '2.7': #15199: Fix JavaScript's default MIME type to application/javascript http://hg.python.org/cpython/rev/20985f52b65e New changeset b64947b6f947 by Petri Lehtinen in branch '3.2': #15199: Fix JavaScript's

[issue15742] SQLite3 documentation changes

2012-08-20 Thread R. David Murray
R. David Murray added the comment: Thanks, Mike. -- resolution: -> fixed stage: -> committed/rejected status: open -> closed versions: +Python 2.7, Python 3.2 ___ Python tracker __

[issue15739] Python crashes with "Bus error: 10"

2012-08-20 Thread Apple Grew
Apple Grew added the comment: If you believe this is impossible then possibly there could be a memory overflow issue which triggers this error in OSX builds. In other builds it may not cause that problem or don't share the same faulty code. -- assignee: -> ronaldoussoren components: +

[issue15742] SQLite3 documentation changes

2012-08-20 Thread Roundup Robot
Roundup Robot added the comment: New changeset 80b15cf2611e by R David Murray in branch '3.2': #15742: clarify sqlite parameter substitution example. http://hg.python.org/cpython/rev/80b15cf2611e New changeset 2eafe04cb6ed by R David Murray in branch 'default': Merge #15742: clarify sqlite param

[issue15739] Python crashes with "Bus error: 10"

2012-08-20 Thread Apple Grew
Apple Grew added the comment: Well I tried with Python2.6 (MacPort) now. It too crashes with Bus error. I guess this has something to do with OSX ports. Please investigate. Whatever it maybe, but the process must not crash like that. -- ___ Python t

[issue15742] SQLite3 documentation changes

2012-08-20 Thread Mike Hoy
Mike Hoy added the comment: Removed print function in this patch. -- Added file: http://bugs.python.org/file26934/sqlite3-docs-remove-print.diff ___ Python tracker ___ __

[issue15742] SQLite3 documentation changes

2012-08-20 Thread Petri Lehtinen
Petri Lehtinen added the comment: + print(c.fetchone()) I don't think this line should be added because it's not there after the first select. -- nosy: +petri.lehtinen ___ Python tracker ___

[issue15726] PyState_FindModule false length-comparison fix

2012-08-20 Thread Roundup Robot
Roundup Robot added the comment: New changeset b96a4b1e7ecb by Antoine Pitrou in branch '3.2': Issue #15726: Fix incorrect bounds checking in PyState_FindModule. http://hg.python.org/cpython/rev/b96a4b1e7ecb New changeset 7789111afe05 by Antoine Pitrou in branch 'default': Issue #15726: Fix inco

[issue15726] PyState_FindModule false length-comparison fix

2012-08-20 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- resolution: -> invalid stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___ ___

[issue15742] SQLite3 documentation changes

2012-08-20 Thread Mike Hoy
New submission from Mike Hoy: In Core-Mentorship we discussed this and decided on the following patch. -- assignee: docs@python components: Documentation files: sqlite3-docs-changes.diff keywords: patch messages: 168681 nosy: docs@python, mikehoy, r.david.murray priority: normal severity

[issue1065427] sre_parse group limit check missing with 'python -O'

2012-08-20 Thread Eugene Voytitsky
Eugene Voytitsky added the comment: Hi all, does someone can answer the questions asked by Keith Briggs in 2004: > What is the reason for this limit? Can it easily be removed? > It is causing me many problems. I also stuck into the problem with this limitation. Details you can read here - htt

[issue15645] 2to3 Grammar pickles not created when upgrading to 3.3.0b2

2012-08-20 Thread Ronald Oussoren
Ronald Oussoren added the comment: BTW. I wouldn't mind a patch review, particularly by someone that can easily test on Linux. I'm not too keen on checking in this patch without a test on Linux, not this close to 3.3rc1. -- ___ Python tracker

[issue15645] 2to3 Grammar pickles not created when upgrading to 3.3.0b2

2012-08-20 Thread Ronald Oussoren
Ronald Oussoren added the comment: There were some problems building using llvm-gcc, those have been resolved by detecting falling back to clang when llvm-gcc is detected. That's the only real problem I know of. -- ___ Python tracker

[issue15645] 2to3 Grammar pickles not created when upgrading to 3.3.0b2

2012-08-20 Thread Terry J. Reedy
Terry J. Reedy added the comment: I had the impression that there *were* problems with compiling 3.3 on the new OSX and Xcode or something. If that is wrong or all fixed, great. Sorry for the noise. -- ___ Python tracker

[issue13370] test_ctypes fails when building python with clang

2012-08-20 Thread Stan Seibert
Stan Seibert added the comment: I can also confirm that the patch applied to the current tip (663de4dbb88a) passes test_ctypes now with Clang 4.0 on OS X 10.8. -- ___ Python tracker ___

[issue15724] Add "versionchanged" to memoryview docs

2012-08-20 Thread Stefan Krah
Stefan Krah added the comment: Thanks for the warning. I see you've already committed, so my natural inertia has protected me from additional merge work. :) -- ___ Python tracker ___

[issue15741] NULL dereference in builtin_compile()

2012-08-20 Thread Stefan Krah
Stefan Krah added the comment: Thanks, done. -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed versions: +Python 2.7, Python 3.2 ___ Python tracker __

[issue15741] NULL dereference in builtin_compile()

2012-08-20 Thread Roundup Robot
Roundup Robot added the comment: New changeset d5ee1a06101f by Stefan Krah in branch '3.2': Issue #15741: Fix potential NULL dereference. Found by Coverity. http://hg.python.org/cpython/rev/d5ee1a06101f New changeset 2b4f6770877e by Stefan Krah in branch '2.7': Issue #15741: Fix potential NULL d

[issue13370] test_ctypes fails when building python with clang

2012-08-20 Thread Ronald Oussoren
Ronald Oussoren added the comment: I've tested the patch on OSX 10.5 with GCC and all tests pass. I'd like to get this into 3.3rc1 as the test failure indicate a problem that could cause very vague problems for users of the ctypes library that use clang on OSX to build python (which includes a

[issue15736] Crash #2 (constructed overflow) in _PySequence_BytesToCharpArray()

2012-08-20 Thread Stefan Krah
Stefan Krah added the comment: Sorry, the right diff this time. -- Added file: http://bugs.python.org/file26932/issue15736.diff ___ Python tracker ___ ___

[issue15736] Crash #2 (constructed overflow) in _PySequence_BytesToCharpArray()

2012-08-20 Thread Stefan Krah
Changes by Stefan Krah : Removed file: http://bugs.python.org/file26931/issue15632.diff ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue15736] Crash #2 (constructed overflow) in _PySequence_BytesToCharpArray()

2012-08-20 Thread Stefan Krah
Stefan Krah added the comment: issue15736.diff shows what I meant in the comments. I find this slightly more readable than casting the big RHS expression. -- Added file: http://bugs.python.org/file26931/issue15632.diff ___ Python tracker

[issue15741] NULL dereference in builtin_compile()

2012-08-20 Thread Martin v . Löwis
Martin v. Löwis added the comment: That's fine, please apply. -- nosy: +loewis ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue15733] PEP 3121, 384 Refactoring applied to winapi module

2012-08-20 Thread Martin v . Löwis
Martin v. Löwis added the comment: In addition, I plan to actively drop Windows 2000 support post 3.3, so CancelIO can be presumed to be present. -- ___ Python tracker ___ _

[issue12643] code.InteractiveConsole ignores sys.excepthook

2012-08-20 Thread Andrew Svetlov
Andrew Svetlov added the comment: I'm ok with current status. Thanks for clarification. -- ___ Python tracker ___ ___ Python-bugs-list

[issue13461] Error on test_issue_1395_5 with Python 2.7 and VS2010

2012-08-20 Thread Patrick Welche
Changes by Patrick Welche : -- nosy: +prlw1 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue13210] Support Visual Studio 2010

2012-08-20 Thread Patrick Welche
Changes by Patrick Welche : -- nosy: +prlw1 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue13789] _tkinter does not build on Windows 7

2012-08-20 Thread Patrick Welche
Changes by Patrick Welche : -- nosy: +prlw1 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue14873] Windows devguide: clarification for build errors due to missing optional dependencies

2012-08-20 Thread Patrick Welche
Changes by Patrick Welche : -- nosy: +prlw1 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue12643] code.InteractiveConsole ignores sys.excepthook

2012-08-20 Thread Nick Coghlan
Nick Coghlan added the comment: The patch also adds a test suite for the code module, in order to demonstrate that the issue is actually fixed. However, due to the interactive nature of the component, the new tests rely on unittest.mock. Backporting the test suite would mean eliminating that

[issue15741] NULL dereference in builtin_compile()

2012-08-20 Thread Stefan Krah
New submission from Stefan Krah: Coverity found a missing NULL check in builtin_compile(). Patch attached. -- components: Interpreter Core files: builtin-compile-check-null.diff keywords: patch messages: 168664 nosy: skrah priority: normal severity: normal stage: patch review status: ope

[issue15739] Python crashes with "Bus error: 10"

2012-08-20 Thread Ross Lagerwall
Ross Lagerwall added the comment: Well the app has an infinite recursion. This shows on Fedora Linux 17: """ Request Method: GET Request URL:http://127.0.0.1:8000/ Django Version: 1.4 Exception Type: RuntimeError Exception Value: maximum recursion depth excee

[issue12643] code.InteractiveConsole ignores sys.excepthook

2012-08-20 Thread Andrew Svetlov
Andrew Svetlov added the comment: Is it finished or not? Also looks like patch applied to 3.3 while issue marked for 2.7 and 3.2 also. -- ___ Python tracker ___ _

[issue15740] test_ssl failure when cacert.org CA cert in system keychain on OSX

2012-08-20 Thread Ronald Oussoren
Changes by Ronald Oussoren : -- assignee: ronaldoussoren -> ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: ht

  1   2   >