[issue4047] test_run_abort triggers CrashReporter on MacOS X

2010-07-18 Thread Martina Oefelein
Martina Oefelein added the comment: Yes, a warning at the start of the test would at least let the user know that the crash is expected. -- ___ Python tracker <http://bugs.python.org/issue4

[issue4047] test_run_abort triggers CrashReporter on MacOS X

2010-07-11 Thread Martina Oefelein
Martina Oefelein added the comment: Retested in Python 2.6.5, 2.7, 3.0.1, 3.1.2: same result -- versions: +Python 2.6, Python 2.7, Python 3.1 ___ Python tracker <http://bugs.python.org/issue4

[issue4044] test_output_textcalendar fails on non-englisch locale

2010-07-11 Thread Martina Oefelein
Martina Oefelein added the comment: Did you test it Python *3.0*? Apparently, the issue does not happen in Python 2.x, and also not in Python 3.1.2. Apparently it was introduced somewhere in Python 3.0, and later fixed. I retested the issue in Python 3.0.1 on Mac OS X 10.6.4, using a

[issue4045] test_mboxmmdf_to_maildir fails on non-englisch locale

2010-07-11 Thread Martina Oefelein
Martina Oefelein added the comment: Did you test it Python *3.0*? Apparently, the issue does not happen in Python 2.x, and also not in Python 3.1.2. Apparently it was introduced somewhere in Python 3.0, and later fixed. I retested the issue in Python 3.0.1 on Mac OS X 10.6.4, using a

[issue4046] test_formatdate_usegmt fails on non-englisch locale

2009-12-30 Thread Martina Oefelein
Martina Oefelein added the comment: Apple doesn't ship py3k yet. I observed the issue originally with my own build of 3.0 RC1 (No particular build settings were used, just ./configure ; make ; make test). It also happens with the build of Python 3.0.1 that is installed on my machine

[issue5436] test_distutils fails with official Mac OS X Installer Disk Image (3.0.1)

2009-03-07 Thread Martina Oefelein
New submission from Martina Oefelein : Majestix:~ martina$ python3.0 -m test.regrtest test_distutils Could not find '/Library/Frameworks/Python.framework/Versions/3.0/lib/python3.0/test' in sys.path to remove it test_distutils test test_distutils failed -- Traceback (most recent

[issue1731717] race condition in subprocess module

2009-01-11 Thread Martina Oefelein
Changes by Martina Oefelein : -- nosy: +oefe ___ Python tracker <http://bugs.python.org/issue1731717> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue2320] Race condition in subprocess using stdin

2009-01-11 Thread Martina Oefelein
Changes by Martina Oefelein : -- nosy: +oefe ___ Python tracker <http://bugs.python.org/issue2320> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue4397] test_socket fails occassionaly in teardown: AssertionError: [Errno 57] Socket is not connected

2008-11-23 Thread Martina Oefelein
New submission from Martina Oefelein <[EMAIL PROTECTED]>: test_socket fails randomly in about 1 of 50 iterations (MacOS X 10.5.5 intel): $ for ((;;)); do DYLD_FRAMEWORK_PATH=/Users/martina/Downloads/Python- 3.0rc3: ./python.exe -E -bb ./Lib/test/regrtest.py -l test_socket;done test_so

[issue4382] test_dbm_dumb fails due to character encoding issue on Mac OS X

2008-11-23 Thread Martina Oefelein
Martina Oefelein <[EMAIL PROTECTED]> added the comment: Yes, the patch fixes the issue for me. ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue4382] test_dbm_dumb fails due to character encoding issue on Mac OS X

2008-11-21 Thread Martina Oefelein
Martina Oefelein <[EMAIL PROTECTED]> added the comment: The Mac Roman encoding comes into play, because _commit opens _dirfile without explicitly specifying an encoding. io.open then gets the encoding via locale.getpreferredencoding, which returns mac-roman: Majestix:Python-3.0rc3 m

[issue4382] test_dbm_dumb fails due to character encoding issue on Mac OS X

2008-11-21 Thread Martina Oefelein
Martina Oefelein <[EMAIL PROTECTED]> added the comment: Example of verbose output (other testcases are similar): == ERROR: test_dumbdbm_creation (test.test_dbm_dumb.DumbDBMTe

[issue4382] test_dbm_dumb fails due to character encoding issue on Mac OS X

2008-11-21 Thread Martina Oefelein
New submission from Martina Oefelein <[EMAIL PROTECTED]>: test_dbm_dumb fails due to what appears to be a character encoding issue on Mac OS X: Majestix:Python-3.0rc3 martina$ DYLD_FRAMEWORK_PATH=/Users/martina/Downloads/Python-3.0rc3: ./python.exe -E -bb ./Lib/test/regrtest

[issue4047] test_run_abort triggers CrashReporter on MacOS X

2008-10-05 Thread Martina Oefelein
New submission from Martina Oefelein <[EMAIL PROTECTED]>: test_run_abort (in test_subprocess.py) causes the MaxOS X crash reporter dialog to pop up (at least when running from an interactive session). This might be unavoidable (the crash is part of the test); however, to avoid confusi

[issue4046] test_formatdate_usegmt fails on non-englisch locale

2008-10-05 Thread Martina Oefelein
New submission from Martina Oefelein <[EMAIL PROTECTED]>: test_formatdate_usegmt (in test_email.py) fails if the environment variable LANG is set to a non-english locale. Python 3.0rc1 on MacOSX 10.5.5 $ LANG=en_US.UTF-8 ./python.exe -E -bb ./Lib/test/regrtest.py -l test_email test_e

[issue4045] test_mboxmmdf_to_maildir fails on non-englisch locale

2008-10-05 Thread Martina Oefelein
Changes by Martina Oefelein <[EMAIL PROTECTED]>: -- type: -> behavior ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue4045> ___ ___

[issue4045] test_mboxmmdf_to_maildir fails on non-englisch locale

2008-10-05 Thread Martina Oefelein
New submission from Martina Oefelein <[EMAIL PROTECTED]>: test_mboxmmdf_to_maildir (in test_mailbox.py) fails if the environment variable LANG is set to a non-english locale. Python 3.0rc1 on MacOSX 10.5.5 Majestix:Python-3.0rc1 martina$ LANG=en_US.UTF-8 ./python.exe -E -bb ./Li

[issue4044] test_output_textcalendar fails on non-englisch locale

2008-10-05 Thread Martina Oefelein
New submission from Martina Oefelein <[EMAIL PROTECTED]>: test_output_textcalendar (in test_calendar.py) fails if the environment variable LANG is set to a non-english locale. Python 3.0rc1 on MacOSX 10.5.5 $ LANG=de_DE.UTF-8 ./python.exe -E -bb ./Lib/test/regrtest.py -l test_ca

[issue3154] "Quick search" box renders too long on FireFox 3

2008-06-29 Thread Martina Oefelein
Martina Oefelein <[EMAIL PROTECTED]> added the comment: I can reproduce it with Safari if I enlarge the font size (Cmd +), and it looks like this will happen with *any* browser. Main cause is that the with of the sidebar is set in pixels, while the size of the Quick search box (a

[issue3230] dictobject.c: inappropriate use of PySet_GET_SIZE?

2008-06-28 Thread Martina Oefelein
Changes by Martina Oefelein <[EMAIL PROTECTED]>: -- versions: +Python 2.6, Python 3.0 ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue3230] dictobject.c: inappropriate use of PySet_GET_SIZE?

2008-06-28 Thread Martina Oefelein
New submission from Martina Oefelein <[EMAIL PROTECTED]>: The first use of PySet_GET_SIZE in dict_fromkeys (file dictobject.c) is applied to a PyDictObject. These seem to work by chance, as the PyDictObject and PySetObject have very similar structure so that it does not matter if you

[issue3229] Language reference, class definitions: missing text in "Programmer's note"

2008-06-28 Thread Martina Oefelein
New submission from Martina Oefelein <[EMAIL PROTECTED]>: In the language reference, compound statements, class definitions: """ Programmer’s note: Variables defined in the class definition are class can be set in a method with self.name = value. """