[issue1659] Tests needing network flag?

2008-01-20 Thread Georg Brandl
Georg Brandl added the comment: Sorry, I was being unclear. I grepped through Lib/test for "skip_expected" and couldn't find a location where e.g. the newly set test_urllib2.skip_expected would be accessed. regrtest.py only accesses this attribute on the two modules I named. ___

[issue1640] Enhancements for mathmodule

2008-01-20 Thread Christian Heimes
Christian Heimes added the comment: I'm +1 in adding fallbacks for important functions like copysign, asinh, acosh and atanh. expm1 and log1p may be worth adding, too. Windows doesn't have any of the functions except of _copysign(). But why write our own version if we can reuse existing implemen

[issue705836] struct.pack of floats in non-native endian order

2008-01-20 Thread Christian Heimes
Christian Heimes added the comment: Sounds like a good idea to me. Although all major platforms support IEEE Python should guarantee a stable behavior on all platforms. The lines should be a safe replacement of the downcast: double fromd; float tof; tof = abs(fromd) >= FLT_MAX ? FLT_MAX : fromd;

[issue1657] [patch] epoll and kqueue wrappers for the select module

2008-01-20 Thread Christian Heimes
Christian Heimes added the comment: Yeah, it's a reasonable suggestion. I'm changing the code to seconds as positive float and None = blocking. __ Tracker <[EMAIL PROTECTED]> __ ___

[issue1659] Tests needing network flag?

2008-01-20 Thread Christian Heimes
Christian Heimes added the comment: I've disabled a single test in socket if the network resource isn't enable. It fixes the problem for me when I'm offline or my WLAN is broken again. The test was also called by test_ssl. -- nosy: +tiran __ Tracker <[EMA

[issue1625] bz2.BZ2File doesn't support multiple streams

2008-01-20 Thread Thomas Herve
Thomas Herve added the comment: The gzip module supports reopening an existing file to add another stream. I think the bz2 module should not the same. __ Tracker <[EMAIL PROTECTED]> __

[issue1657] [patch] epoll and kqueue wrappers for the select module

2008-01-20 Thread Christian Heimes
Changes by Christian Heimes: Added file: http://bugs.python.org/file9241/trunk_select_epoll_kqueue8.patch __ Tracker <[EMAIL PROTECTED]> __ ___ Python-b

[issue1351692] Switch to make pprint.pprint display ints and longs in hex

2008-01-20 Thread Georg Brandl
Georg Brandl added the comment: Committed to trunk in r60131. -- nosy: +georg.brandl resolution: -> accepted status: open -> closed _ Tracker <[EMAIL PROTECTED]> _

[issue1473257] Add a gi_code attr to generators

2008-01-20 Thread Georg Brandl
Georg Brandl added the comment: Guido, do you have an opinion? Seems like a nonproblematic and probably useful change for 2.6. -- assignee: pje -> gvanrossum nosy: +gvanrossum _ Tracker <[EMAIL PROTECTED]> ___

[issue1621] Do not assume signed integer overflow behavior

2008-01-20 Thread Ismail Donmez
Ismail Donmez added the comment: Final patch should be complete. Used a trick in _sre.c, instead of i < 0 , I used i + i < i to trick gcc. Added file: http://bugs.python.org/file9242/fix-overflows-final.patch __ Tracker <[EMAIL PROTECTED]>

[issue1178141] urllib.py overwrite HTTPError code with 200

2008-01-20 Thread Georg Brandl
Georg Brandl added the comment: The bug (interpreting non-200 2xx codes as error) has already been fixed. I've finished and committed the other part (adding getcode() to addinfourl) in r60133. -- resolution: -> accepted status: open -> closed _ Track

[issue1117751] urllib.urlopen should put the http-error-code in .info()

2008-01-20 Thread Georg Brandl
Georg Brandl added the comment: For #1178141 I added f.getcode() in r60133. -- nosy: +georg.brandl resolution: -> out of date status: open -> closed _ Tracker <[EMAIL PROTECTED]> _

[issue1449471] Splitting CJK codecs from pythoncore dll

2008-01-20 Thread Georg Brandl
Georg Brandl added the comment: Another year has passed; closing this. -- status: open -> closed _ Tracker <[EMAIL PROTECTED]> _ ___

[issue856047] urllib.py does not use "no_proxy";

2008-01-20 Thread Georg Brandl
Georg Brandl added the comment: Added docs and committed as r60134. Thanks for your patch! -- nosy: +georg.brandl resolution: -> accepted status: open -> closed Tracker <[EMAIL PROTECTED]> ___

[issue1731720] urllib.urlretrieve/URLopener.retrieve - 'buff' argument

2008-01-20 Thread Georg Brandl
Georg Brandl added the comment: Why don't you use open() and transfer the data between file objects yourself? The point of retrieve() is to create a local file containing the data. Closing as "won't fix". -- nosy: +georg.brandl resolution: -> wont fix status: open -> closed __

[issue1664522] Fix for urllib.ftpwrapper.retrfile() and none existing files

2008-01-20 Thread Georg Brandl
Georg Brandl added the comment: Committed patch (added an additional try-finally) as r60135. -- nosy: +georg.brandl resolution: -> accepted status: open -> closed _ Tracker <[EMAIL PROTECTED]> ___

[issue735515] urllib / urllib2 should cache 301 redirections

2008-01-20 Thread Georg Brandl
Georg Brandl added the comment: John, what did you have in mind? -- nosy: +georg.brandl Tracker <[EMAIL PROTECTED]> ___ Python-bugs-

[issue1197207] Add proxies arg to urllib.urlretrieve

2008-01-20 Thread Georg Brandl
Georg Brandl added the comment: Waiting for diff from OP, setting to Pending. -- nosy: +georg.brandl status: open -> pending _ Tracker <[EMAIL PROTECTED]> _

[issue614557] LookupError etc. need API to get the key

2008-01-20 Thread Georg Brandl
Georg Brandl added the comment: Will this be revisited for py3k? -- nosy: +georg.brandl versions: +Python 3.0 Tracker <[EMAIL PROTECTED]> __

[issue487566] smart module import

2008-01-20 Thread Georg Brandl
Georg Brandl added the comment: Chris, is this something that could be done with your post-import hooks? -- assignee: -> tiran nosy: +georg.brandl, tiran Tracker <[EMAIL PROTECTED]> __

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

2008-01-20 Thread Georg Brandl
Changes by Georg Brandl: -- assignee: -> lemburg nosy: +lemburg Tracker <[EMAIL PROTECTED]> ___ Python-bugs-list mailing list Unsu

[issue592703] HTTPS does not handle pipelined requests

2008-01-20 Thread Georg Brandl
Georg Brandl added the comment: SSL support was rewritten, so this may be fixed now... -- assignee: jhylton -> janssen nosy: +georg.brandl, janssen Tracker <[EMAIL PROTECTED]>

[issue771334] pydoc.TextDoc raises for some kinds of objects

2008-01-20 Thread Georg Brandl
Georg Brandl added the comment: docother() was fixed in r39636 to accept the additional argument. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed Tracker <[EMAIL PROTECTED]> ___

[issue771479] pyconfig.h duplicates common defines

2008-01-20 Thread Georg Brandl
Changes by Georg Brandl: -- assignee: -> loewis nosy: +loewis Tracker <[EMAIL PROTECTED]> ___ Python-bugs-list mailing list Unsubs

[issue1034053] unittest.py patch: add skipped test functionality

2008-01-20 Thread Antoine Pitrou
Antoine Pitrou added the comment: So what's the status of this? Skipping test is still an important ability to have. -- nosy: +pitrou _ Tracker <[EMAIL PROTECTED]> _ ___

[issue799369] documentation for sys.platform is unclear

2008-01-20 Thread Georg Brandl
Georg Brandl added the comment: Implemented the suggestions in r60136. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed Tracker <[EMAIL PROTECTED]> _

[issue1621] Do not assume signed integer overflow behavior

2008-01-20 Thread Christian Heimes
Christian Heimes added the comment: Ismail Donmez wrote: > Ismail Donmez added the comment: > > Final patch should be complete. Used a trick in _sre.c, instead of i < 0 > , I used > i + i < i to trick gcc. I'm going to review your patch later. Christian __ Tra

[issue652749] extra __builtin__ stuff not documented

2008-01-20 Thread Georg Brandl
Georg Brandl added the comment: Documented in r60137. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed Tracker <[EMAIL PROTECTED]> __

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

2008-01-20 Thread Marc-Andre Lemburg
Marc-Andre Lemburg added the comment: Sounds reasonable. Could you come up with a patch ? Thanks. Tracker <[EMAIL PROTECTED]> ___ Python-bu

[issue546558] Windows getpass bug

2008-01-20 Thread Georg Brandl
Georg Brandl added the comment: So it seems to be fixed in NT -- we don't support 9x anymore in 2.6 up. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed Tracker <[EMAIL PROTECTED]> _

[issue1621] Do not assume signed integer overflow behavior

2008-01-20 Thread Christian Heimes
Christian Heimes added the comment: Ismail Donmez wrote: > Final patch should be complete. Used a trick in _sre.c, instead of i < 0 > , I used > i + i < i to trick gcc. > > Added file: http://bugs.python.org/file9242/fix-overflows-final.patch Does the C89 standard allow this code? int q = 1;

[issue487566] smart module import

2008-01-20 Thread Christian Heimes
Christian Heimes added the comment: It is possible to re-use post import hooks for the purpose but really, this is a job for PEP 3124 "Overloading, Generic Functions, Interfaces, and Adaptation". Tracker <[EMAIL PROTECTED]>

[issue1700463] VC6 build patch for trunk

2008-01-20 Thread Hirokazu Yamamoto
Hirokazu Yamamoto added the comment: Rev59716 required some fix. I'm not sure the patch for Lib/socket.py is apropriate. Added file: http://bugs.python.org/file9244/vc6-trunk-ver5.zip _ Tracker <[EMAIL PROTECTED]> ___

[issue487566] smart module import

2008-01-20 Thread Georg Brandl
Georg Brandl added the comment: I agree. In any case, this issue will be handled by one of the PEPs. -- resolution: -> later status: open -> closed Tracker <[EMAIL PROTECTED]>

[issue1826] operator.attrgetter() should accept dotted attribute paths

2008-01-20 Thread Antoine Pitrou
Antoine Pitrou added the comment: FWIW, Georg's patch works here. Perhaps there should be a test for unicode attribute names since it is special-cased in the patch. -- nosy: +pitrou __ Tracker <[EMAIL PROTECTED]> ___

[issue1876] bogus attrgetter test in test_operator

2008-01-20 Thread Antoine Pitrou
New submission from Antoine Pitrou: In test_operator we find the following lines: class C(object): def __getattr(self, name): raise SyntaxError self.failUnlessRaises(AttributeError, operator.attrgetter('foo'), C()) Obviously "__getattr" has no effect.

[issue1669] shutil.rmtree fails on symlink, after deleting contents

2008-01-20 Thread Georg Brandl
Georg Brandl added the comment: Committed a variant of the last patch in r60139; it now raises OSError like all other functions that are used in rmtree(). Added docs and tests. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed __ Tracker

[issue1647] IDLE messes around with sys.exitfunc

2008-01-20 Thread Georg Brandl
Georg Brandl added the comment: Should be no problem then. -- nosy: +georg.brandl resolution: -> works for me status: open -> closed __ Tracker <[EMAIL PROTECTED]> __

[issue1652] subprocess should have an option to restore SIGPIPE to default action

2008-01-20 Thread Georg Brandl
Georg Brandl added the comment: Raising priority. What incompatibilities could occur if SIGPIPE is restored by default? -- nosy: +georg.brandl priority: -> high severity: normal -> major type: -> behavior __ Tracker <[EMAIL PROTECTED]>

[issue1648] add new function, sys.gettrace

2008-01-20 Thread Georg Brandl
Georg Brandl added the comment: Committed as r60138. Thanks for the complete patch! -- assignee: brett.cannon -> georg.brandl nosy: +georg.brandl resolution: -> accepted status: open -> closed __ Tracker <[EMAIL PROTECTED]>

[issue1876] bogus attrgetter test in test_operator

2008-01-20 Thread Georg Brandl
Georg Brandl added the comment: As seen from the __eq__ example, the exception should be SyntaxError. With both changes, it works fine again in r60142. As for why the test is there, maybe the operator functions had lax error checking once. -- nosy: +georg.brandl resolution: -> fixed st

[issue1877] unhelpful error when calling "python "

2008-01-20 Thread Christian Heimes
Changes by Christian Heimes: -- components: +Library (Lib) keywords: +easy priority: -> normal type: -> behavior versions: +Python 2.6, Python 3.0 __ Tracker <[EMAIL PROTECTED]> __ _

[issue1087735] mmap instance method access bug

2008-01-20 Thread Georg Brandl
Georg Brandl added the comment: Fixed in r60143 by switching the mmap object's getattr function to the standard PyObject_GenericGetAttr(). -- nosy: +georg.brandl resolution: -> fixed status: open -> closed _ Tracker <[EMAIL PROTECTED]>

[issue1389051] imaplib causes excessive fragmentation for large documents

2008-01-20 Thread Christian Heimes
Christian Heimes added the comment: I read your posting on the python general list. Eeeeh! That's awful. -- keywords: +easy nosy: +tiran priority: normal -> high type: -> behavior versions: +Python 2.5, Python 2.6 -Python 2.4 _ Tracker <[EMAIL PROTE

[issue1506171] Add "methodcaller" to the operator module

2008-01-20 Thread Georg Brandl
Georg Brandl added the comment: Attaching patch against SVN trunk. -- assignee: -> rhettinger nosy: +georg.brandl resolution: rejected -> Added file: http://bugs.python.org/file9245/methodcaller.diff _ Tracker <[EMAIL PROTECTED]>

[issue1877] unhelpful error when calling "python "

2008-01-20 Thread Georg Brandl
New submission from Georg Brandl: [EMAIL PROTECTED] ~/devel/python> ./python Lib Traceback (most recent call last): File "Lib/runpy.py", line 99, in _run_module_as_main loader, code, fname = _get_module_details(mod_name) File "Lib/runpy.py", line 86, in _get_module_details raise Impor

[issue1640] Enhancements for mathmodule

2008-01-20 Thread Mark Dickinson
Mark Dickinson added the comment: Excellent! I'll take a look. __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list Unsubscribe: http:/

[issue1715] Make pydoc list submodules

2008-01-20 Thread Antoine Pitrou
Antoine Pitrou added the comment: This should be a better patch, although it only applies to the text formatter of pydoc, not the HTML one (I'm too lazy for this :-)). -- nosy: +pitrou Added file: http://bugs.python.org/file9246/pydocsubmodules.patch __ T

[issue1640] Enhancements for mathmodule

2008-01-20 Thread Mark Dickinson
Mark Dickinson added the comment: One question: is there a policy on what should happen for singularities and domain errors? If not, I think it would be useful to have one. Following the policy may not be achievable on all platforms, but it should be easy to do on major platforms, and at l

[issue1640] Enhancements for mathmodule

2008-01-20 Thread Mark Dickinson
Mark Dickinson added the comment: whoops. OverflowError should be something else in the previous post; of course, OverflowError is inappropriate for domain errors (but entirely appropriate for something like exp(1000)). Currently, on Linux I get: - overflow (exp(1000))-> OverflowError

[issue1640] Enhancements for mathmodule

2008-01-20 Thread Christian Heimes
Christian Heimes added the comment: Mark Dickinson wrote: > Currently, on Linux I get: > - overflow (exp(1000))-> OverflowError > - domain error (sqrt(-1)) -> ValueError > - singularity (log(0))-> OverflowError Windows raises the same exceptions as Linux. _

[issue1640] Enhancements for mathmodule

2008-01-20 Thread Mark Dickinson
Mark Dickinson added the comment: Okay: for now, I guess we just follow the pattern that already exists on Linux and Windows. I think the OS X sqrt(-1) behaviour is a bug. __ Tracker <[EMAIL PROTECTED]> ___

[issue1615] descriptor protocol bug

2008-01-20 Thread Antoine Pitrou
Antoine Pitrou added the comment: I can confirm that with SVN trunk, and it's actually even worse because it can return unexpected results without raising an exception at all: >>> class Foo(object): ... def __getattr__(self, name): return 42 ... @property ... def bacon(self): return int.la

[issue771479] pyconfig.h duplicates common defines

2008-01-20 Thread Martin v. Löwis
Martin v. Löwis added the comment: I fail to see the problem. HAVE_CHROOT (e.g.) is indeed generic, but so on purpose. If some other package also defines HAVE_CHROOT, but in a different way, then the problem is not that the names of the defines are identical, but that the values are different, hi

[issue1878] class attribute cache failure (regression)

2008-01-20 Thread Paul Pogonyshev
New submission from Paul Pogonyshev: I have a regression from Python 2.5 to Python SVN (would-be-2.6). I believe this because of class attribute caching. The problem shown below happens because AbstractGCProtector is an extension class. So, Python interpreter doesn't have a chance to notice se

[issue1878] class attribute cache failure (regression)

2008-01-20 Thread Paul Pogonyshev
Paul Pogonyshev added the comment: Eh, disregard that, I missed one line with set_default() call. Still, the unit test fails... __ Tracker <[EMAIL PROTECTED]> __ __

[issue1878] class attribute cache failure (regression)

2008-01-20 Thread Paul Pogonyshev
Paul Pogonyshev added the comment: OK, here it is: >>> from notify.all import * >>> original_protector = AbstractGCProtector.default >>> new_protector = FastGCProtector () >>> AbstractGCProtector.set_default (new_protector) >>> AbstractGCProtector.default is new_protector False >>> AbstractGCPro

[issue1621] Do not assume signed integer overflow behavior

2008-01-20 Thread Martin v. Löwis
Martin v. Löwis added the comment: > Does the C89 standard allow this code? > > int q = 1; > int p = (unsigned)q; > I've never seen an unsigned cast without a type. Yes, that's fine; it's a different spelling of "unsigned int". In C99, 6.7.2p1 defines the following groups as equivalent: - short

[issue1621] Do not assume signed integer overflow behavior

2008-01-20 Thread Ismail Donmez
Ismail Donmez added the comment: Hi Christian, unsigned cast is actually suggested by GCC developers to force correct wrapping for signed types. And thanks to Martin, it makes sense :-) __ Tracker <[EMAIL PROTECTED]> ___

[issue592703] HTTPS does not handle pipelined requests

2008-01-20 Thread Bill Janssen
Bill Janssen added the comment: Well, if someone writes test case and verifies it, I'll look at it. Tracker <[EMAIL PROTECTED]> ___ Python-bu

[issue735515] urllib / urllib2 should cache 301 redirections

2008-01-20 Thread John J Lee
John J Lee added the comment: In what respect? I just meant that it would be nice (and more compliant with the RFC) if rather than fetching the original URL each time, a map of URLs to 301-redirected URLs was kept. For urllib2, I suppose the map would be a private attribute of HTTPRedirectHandl

[issue1615] descriptor protocol bug

2008-01-20 Thread Antoine Pitrou
Antoine Pitrou added the comment: PyObject_GenericGetAttr is invoked from slot_tp_getattr_hook in typeobject.c via tp_getattro. The problem is that, when tp_getattro returns with an AttributeError, there is no way for slot_tp_getattr_hook to know whether the error was raised by PyObject_GenericGe

[issue1878] class attribute cache failure (regression)

2008-01-20 Thread Paul Pogonyshev
Paul Pogonyshev added the comment: set_default() is a static method to set 'default'. Because of this: >>> AbstractGCProtector.default = 42 Traceback (most recent call last): File "", line 1, in TypeError: can't set attributes of built-in/extension type 'notify.gc.AbstractGCProtector' About

[issue1878] class attribute cache failure (regression)

2008-01-20 Thread Georg Brandl
Georg Brandl added the comment: It would be very interesting to know what set_default() actually does. IOW, without the source code of the extension module we can't do anything about this. -- nosy: +georg.brandl __ Tracker <[EMAIL PROTECTED]>

[issue1878] class attribute cache failure (regression)

2008-01-20 Thread Georg Brandl
Georg Brandl added the comment: I'm sorry, but I can't get this to run. With a clean 0.1.14 tarball, I get Building extension... running build_ext building 'notify.gc' extension creating build creating build/temp.linux-i686-2.5 creating build/temp.linux-i686-2.5/notify i686-pc-linux-gnu-gcc -pth

[issue917120] imaplib: incorrect quoting in commands

2008-01-20 Thread Christian Heimes
Changes by Christian Heimes: -- keywords: +easy type: -> rfe versions: +Python 2.6 -Python 2.3 Tracker <[EMAIL PROTECTED]> ___ Pyth

[issue756982] mailbox should use email not rfc822

2008-01-20 Thread Christian Heimes
Changes by Christian Heimes: -- components: +Documentation, Library (Lib) -Extension Modules keywords: +easy versions: +Python 2.6, Python 3.0 -Python 2.3 Tracker <[EMAIL PROTECTED]> __

[issue1878] class attribute cache failure (regression)

2008-01-20 Thread Paul Pogonyshev
Paul Pogonyshev added the comment: Weird. Does it even run with a stable Python (not trunk)? __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mail

[issue1878] class attribute cache failure (regression)

2008-01-20 Thread Paul Pogonyshev
Paul Pogonyshev added the comment: Can you run the pasted script (from the third comment) manually then? The crash might be related to the bug in question. __ Tracker <[EMAIL PROTECTED]> __ __

[issue761888] popen2.Popen3 and popen2.Popen4 leaks filedescriptors

2008-01-20 Thread Christian Heimes
Changes by Christian Heimes: -- versions: +Python 2.6 -Python 2.3 Tracker <[EMAIL PROTECTED]> ___ Python-bugs-list mailing list Uns

[issue814654] 'import Tkinter' causes windows missing-DLL popup

2008-01-20 Thread Christian Heimes
Changes by Christian Heimes: -- type: -> behavior versions: +Python 2.5, Python 2.6, Python 3.0 -Python 2.3 Tracker <[EMAIL PROTECTED]> ___

[issue779825] plistlib and bundlebuilder not in the documentation

2008-01-20 Thread Christian Heimes
Changes by Christian Heimes: -- assignee: jvr -> components: +Documentation -Library (Lib) keywords: +easy versions: +Python 2.6 -Python 2.3 Tracker <[EMAIL PROTECTED]> __

[issue756093] complex pow() crash on Alpha

2008-01-20 Thread Christian Heimes
Christian Heimes added the comment: Does the error occur with Python 2.6, too? -- components: +Extension Modules -None nosy: +tiran status: open -> pending type: -> crash versions: +Python 2.6 -Python 2.3 Tracker <[EMAIL PROTECTED]>

[issue1878] class attribute cache failure (regression)

2008-01-20 Thread Georg Brandl
Georg Brandl added the comment: Yes, runs fine with 2.5. __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list Unsubscribe: http://mail.p

[issue763043] unable to specify another compiler

2008-01-20 Thread Christian Heimes
Changes by Christian Heimes: -- components: +Documentation keywords: +easy type: -> rfe versions: +Python 2.6 -Python 2.3 Tracker <[EMAIL PROTECTED]> _

[issue808197] rlcompleter incompatibility

2008-01-20 Thread Christian Heimes
Changes by Christian Heimes: -- resolution: -> out of date status: open -> closed Tracker <[EMAIL PROTECTED]> ___ Python-bugs-list

[issue836058] socket.send() on behaves as nonblocking when timeout is set

2008-01-20 Thread Christian Heimes
Changes by Christian Heimes: -- type: -> behavior versions: +Python 2.6 -Python 2.3 Tracker <[EMAIL PROTECTED]> ___ Python-bugs-lis

[issue1597850] Cross compiling patches for MINGW

2008-01-20 Thread Christopher Friedt
Christopher Friedt added the comment: I can confirm what John Stowers experienced with ac_cv_printf_zd Did someone forget to run autoconf afterward? When I did, retrying configure again returned an error saying that config.sub was missing. I made configure just write out a yes to the ac_cv_pri

[issue921868] socket_htons does not work under AIX 64-bit

2008-01-20 Thread Christian Heimes
Changes by Christian Heimes: -- components: +Extension Modules -Library (Lib) keywords: +easy versions: +Python 2.6 -Python 2.3 Tracker <[EMAIL PROTECTED]>

[issue908316] pdb should hash stdout

2008-01-20 Thread Christian Heimes
Changes by Christian Heimes: -- keywords: +easy priority: normal -> low type: -> rfe versions: +Python 2.6 -Python 2.3 Tracker <[EMAIL PROTECTED]>

[issue977461] Cannot specify compiler for 'install' on command line

2008-01-20 Thread Christian Heimes
Christian Heimes added the comment: Use "python setup.py build --compiler=bcpp install" -- nosy: +tiran resolution: -> invalid status: open -> closed Tracker <[EMAIL PROTECTED]> __

[issue951275] ihooks chokes on BioPython package

2008-01-20 Thread Christian Heimes
Christian Heimes added the comment: The bug is probably outdated. Please open a new issue if the code fails under Python 2.5 -- nosy: +tiran resolution: -> out of date status: open -> closed Tracker <[EMAIL PROTECTED]>

[issue1003535] Simple File fix for Windows Runtime incompatability

2008-01-20 Thread Christian Heimes
Christian Heimes added the comment: We are using VS 2008 now and we don't support mixing multiple CRTs. If you still want to get your patch into Python 2.6 create a new issue with a clean patch. -- nosy: +tiran resolution: -> out of date status: open -> closed _

[issue924008] make fails using -std option

2008-01-20 Thread Christian Heimes
Christian Heimes added the comment: No response from OP in about 3 years, closing. -- nosy: +tiran resolution: -> out of date status: open -> closed Tracker <[EMAIL PROTECTED]> ___

[issue1069410] import on Windows: please call SetErrorMode first

2008-01-20 Thread Christian Heimes
Christian Heimes added the comment: I'll take fix it for 2.6 -- assignee: -> tiran components: +Interpreter Core -Library (Lib) nosy: +tiran priority: normal -> high versions: +Python 2.6 -Python 2.3 _ Tracker <[EMAIL PROTECTED]>

[issue1069092] segfault on printing nested sequences of None/Ellipsis

2008-01-20 Thread Christian Heimes
Changes by Christian Heimes: -- type: -> crash versions: +Python 2.6 -Python 2.3 _ Tracker <[EMAIL PROTECTED]> _ ___ Python-bugs-lis

[issue1878] class attribute cache failure (regression)

2008-01-20 Thread Georg Brandl
Georg Brandl added the comment: I've now built my trunk python without debugging enabled, and can reproduce your problem. Armin: the extension module directly modifies an extension type's tp_dict -- what should it do instead to make the cache happy? -- assignee: -> arigo nosy: +arigo

[issue970783] PyObject_GenericGetAttr is undocumented

2008-01-20 Thread Christian Heimes
Changes by Christian Heimes: -- assignee: -> georg.brandl keywords: +easy nosy: +georg.brandl priority: normal -> low type: -> rfe versions: +Python 2.6 -Python 2.3 Tracker <[EMAIL PROTECTED]> __

[issue997912] Enclosing Scope missing from namespace in Tutorial

2008-01-20 Thread Christian Heimes
Changes by Christian Heimes: -- assignee: -> georg.brandl keywords: +easy nosy: +georg.brandl priority: normal -> low versions: +Python 2.6 -Python 2.3 Tracker <[EMAIL PROTECTED]>

[issue808164] socket.close() doesn't play well with __del__

2008-01-20 Thread Christian Heimes
Changes by Christian Heimes: -- components: +Extension Modules -Library (Lib) type: -> behavior versions: +Python 2.6 -Python 2.3 Tracker <[EMAIL PROTECTED]> _

[issue849218] ZipInfo shows incorrect file size for large files

2008-01-20 Thread Christian Heimes
Christian Heimes added the comment: Several 32bit related issues were solved a while ago. Please creaet a new issue if the latest (!) svn checkout fails for you. -- nosy: +tiran resolution: -> out of date status: open -> closed Tracker <[EMAIL PROTE

[issue894743] build_ssl can't find ActiveState Perl from unusual locations

2008-01-20 Thread Christian Heimes
Christian Heimes added the comment: We have a new build system for Windows. -- nosy: +tiran resolution: -> out of date status: open -> closed Tracker <[EMAIL PROTECTED]> _

[issue872686] Python 2.3.3 test_tempfile test_mode() fails on AIX 5.2

2008-01-20 Thread Christian Heimes
Christian Heimes added the comment: The bug report is 4 years old. Please open a new issue if the test fails with Python 2.5+. -- nosy: +tiran resolution: -> out of date status: open -> closed Tracker <[EMAIL PROTECTED]>

[issue840065] Incorrect shared library build

2008-01-20 Thread Christian Heimes
Christian Heimes added the comment: The user hasn't provided a patch in more than 4 years. Please open a new issue if you are still interested in the feature. -- nosy: +tiran resolution: -> out of date status: open -> closed Tracker <[EMAIL PROTECTE

[issue1544306] checking size of int... configure: error: cannot compute siz

2008-01-20 Thread Georg Brandl
Georg Brandl added the comment: No response -> closing. -- nosy: +georg.brandl resolution: -> works for me status: open -> closed _ Tracker <[EMAIL PROTECTED]> _ __

[issue858253] EAGAIN when sys.stdin.readline()

2008-01-20 Thread Christian Heimes
Christian Heimes added the comment: The bug is probably outdated. Please create a new issue if the bug still occurs for you with newer versions of Python and your OS. -- nosy: +tiran resolution: -> out of date status: open -> closed Tracker <[EMAIL

[issue847812] 64 bit solaris versus /usr/local/lib

2008-01-20 Thread Christian Heimes
Changes by Christian Heimes: -- resolution: -> works for me status: open -> closed Tracker <[EMAIL PROTECTED]> ___ Python-bugs-list

[issue811295] ntohs on Solaris can return negative values

2008-01-20 Thread Christian Heimes
Christian Heimes added the comment: The ntohs bug was fixed in Python 2.6. -- nosy: +tiran resolution: -> out of date status: open -> closed Tracker <[EMAIL PROTECTED]> __

[issue896199] Some Carbon modules missing

2008-01-20 Thread Christian Heimes
Changes by Christian Heimes: -- keywords: +easy priority: normal -> low type: -> rfe versions: +Python 2.6 -Python 2.3 Tracker <[EMAIL PROTECTED]>

[issue909308] Embedded Python Interpreter in MFC apps leaks

2008-01-20 Thread Christian Heimes
Christian Heimes added the comment: See Roland Trainor's comment. -- nosy: +tiran resolution: -> works for me status: open -> closed Tracker <[EMAIL PROTECTED]> __

  1   2   >