Re: python2.3 removed - open bugs
On Tue, Jan 09, 2007 at 09:40:10PM +0100, Martin Michlmayr wrote: > python2.3 has been removed from unstable. Can someone please go > through the list of open bugs and reassign those which still apply to > python2.4 and close the rest. > > The current list of bugs is: > > 377329: normal: python2.3 -c 'int(buffer(__import__("array").array("c")))' > segfaults > 390152: normal: python2.3: logging module is broken I've confirmed these 2 with python2.4 and reassigned them -- Brian Sutherland Metropolis - "it's the first movie with a robot. And she's a woman. And she's EVIL!!" -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: python2.3 removed - open bugs
reassign 369689 python2.4 thanks Or should I duplicate it for 2.5 as well? :-) ,--- | *$> LC_ALL=en_DK python2.4 test_locale.py | 'en_DK' | Traceback (most recent call last): | File "test_locale.py", line 8, in ? | print time.strptime('May 31 09:30:01', '%b %d %H:%M:%S') | File "/usr/lib/python2.4/_strptime.py", line 269, in ? | _TimeRE_cache = TimeRE() | File "/usr/lib/python2.4/_strptime.py", line 188, in __init__ | self.locale_time = LocaleTime() | File "/usr/lib/python2.4/_strptime.py", line 73, in __init__ | self.lang = _getlang() | File "/usr/lib/python2.4/_strptime.py", line 32, in _getlang | return locale.getlocale(locale.LC_TIME) | File "/usr/lib/python2.4/locale.py", line 365, in getlocale | return _parse_localename(localename) | File "/usr/lib/python2.4/locale.py", line 278, in _parse_localename | raise ValueError, 'unknown locale: %s' % localename | ValueError: unknown locale: en_DK | | *$> LC_ALL=en_DK python2.5 test_locale.py | 'en_DK' | Traceback (most recent call last): | File "test_locale.py", line 8, in | print time.strptime('May 31 09:30:01', '%b %d %H:%M:%S') | File "/usr/lib/python2.5/_strptime.py", line 272, in | _TimeRE_cache = TimeRE() | File "/usr/lib/python2.5/_strptime.py", line 191, in __init__ | self.locale_time = LocaleTime() | File "/usr/lib/python2.5/_strptime.py", line 73, in __init__ | self.lang = _getlang() | File "/usr/lib/python2.5/_strptime.py", line 32, in _getlang | return locale.getlocale(locale.LC_TIME) | File "/usr/lib/python2.5/locale.py", line 460, in getlocale | return _parse_localename(localename) | File "/usr/lib/python2.5/locale.py", line 373, in _parse_localename | raise ValueError, 'unknown locale: %s' % localename | ValueError: unknown locale: en_DK `--- On Tue, 09 Jan 2007, Martin Michlmayr wrote: > 369689: normal: ERROR: unknown locale: en_DK -- .-. =-- /v\ = Keep in touch// \\ (yoh@|www.)onerussian.com Yaroslav Halchenko /( )\ ICQ#: 60653192 Linux User^^-^^[17] -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: python2.3 removed - open bugs
close 185776 thanks Seems to be resolved to some degree - please reopen if I am wrong ,-- | | *$> LC_ALL=en_DK python2.2 | Python 2.2.3+ (#1, Aug 30 2005, 15:57:46) | [GCC 4.0.2 20050821 (prerelease) (Debian 4.0.1-6)] on linux2 | Type "help", "copyright", "credits" or "license" for more information. | >>> import locale; locale.getlocale() | Traceback (most recent call last): | File "", line 1, in ? | File "/usr/lib/python2.2/locale.py", line 365, in getlocale | return _parse_localename(localename) | File "/usr/lib/python2.2/locale.py", line 280, in _parse_localename | raise ValueError, 'unknown locale: %s' % localename | ValueError: unknown locale: en_DK | >>> | $> LC_ALL=en_DK python2.3 | Python 2.3.5 (#2, Oct 18 2006, 23:04:45) | [GCC 4.1.2 20061015 (prerelease) (Debian 4.1.1-16.1)] on linux2 | Type "help", "copyright", "credits" or "license" for more information. | >>> import locale; locale.getlocale() | (None, None) | >>> | $> LC_ALL=en_DK python2.4 | Python 2.4.4 (#2, Oct 20 2006, 00:23:25) | [GCC 4.1.2 20061015 (prerelease) (Debian 4.1.1-16.1)] on linux2 | Type "help", "copyright", "credits" or "license" for more information. | >>> import locale; locale.getlocale() | (None, None) | >>> | `--- On Tue, 09 Jan 2007, Martin Michlmayr wrote: > 185776: important: python2.2: locale.getlocale doesn't handle all locales > gracefully -- .-. =-- /v\ = Keep in touch// \\ (yoh@|www.)onerussian.com Yaroslav Halchenko /( )\ ICQ#: 60653192 Linux User^^-^^[17] -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]