[issue1880] Generalize math.hypot function

2008-01-20 Thread Mark Dickinson
Mark Dickinson added the comment: I'm not sure either that such a generalization would belong in math (which right now does little more than expose some basic functions from the C library) or that it should be called hypot. It seems to me that this would belong with other vector-type math st

[issue1640] Enhancements for mathmodule

2008-01-20 Thread Mark Dickinson
Mark Dickinson added the comment: Thanks, Tim! Dare I suggest extending these rules to encompass things like sqrt(NaN), log(inf), etc., as follows: - return a special value in Python where IEEE-754r/C99 specifies a special value, but doesn't raise any of the three divide-by-zero, invalid,

[issue1275] bsddb closing a DB object before all DBCursors using it are closed crashes

2008-01-20 Thread Gregory P. Smith
Gregory P. Smith added the comment: a code snipped using a database d that demonstrates this: c = d.cursor() d.close() print >>sys.stderr, "database closed before cursor" del c print >>sys.stderr, "cursor deleted and we didn't crash!" -- priority: -> normal versions

[issue1880] Generalize math.hypot function

2008-01-20 Thread David W. Lambert
New submission from David W. Lambert: Please generalize math.hypot. While I don't have a survey of python codes, it seems to me unlikely for this change to break existing programs. import math def hypot(*args): ''' Return the Euclidean vector length. >>> from math import

[issue1879] sqrt(-1) doesn't raise ValueError on OS X

2008-01-20 Thread Mark Dickinson
New submission from Mark Dickinson: On OS X 10.4, and probably other versions of OS X too, calls to math.log and math.sqrt that should raise ValueError instead return a NaN: Python 2.6a0 (trunk:60144, Jan 20 2008, 21:43:56) [GCC 4.0.1 (Apple Computer, Inc. build 5370)] on darwin Type "help",

[issue1640] Enhancements for mathmodule

2008-01-20 Thread Tim Peters
Tim Peters added the comment: Mark, these are the "spirit of 754" rules: 1. If the mathematical result is a real number, but of magnitude too large to approximate by a machine float, overflow is signaled and the result is an infinity (with the appropriate sign). 2. If the mathematical result is

[issue1640] Enhancements for mathmodule

2008-01-20 Thread Mark Dickinson
Mark Dickinson added the comment: George: I think my last post was a bit rude. I apologize if it came across that way. Mathematical rigor and IEEE-754 recommendations aren't necessarily in conflict here, though. For example, the natural log function from (0, infinity) to (-infinity, infi

[issue1640] Enhancements for mathmodule

2008-01-20 Thread George Castillo
George Castillo added the comment: I misunderstood the rationale for the function returning infinite at those points - I didn't realize that C99 was the governing force behind the implementation of these functions, rather than mathematical rigor. Thanks for pointing it out. In that case, I agre

[issue1703448] "t.join(); assert t not in threading.enumerate()" fails

2008-01-20 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: Also reproduced on winXP with SVN trunk. The cause seems that in threading.py, the __stop() method notifies all waiting threads, and that __delete() effectively removes the thread from the active list. I dared to swap the two calls, and it seems to solve t

[issue1703448] "t.join(); assert t not in threading.enumerate()" fails

2008-01-20 Thread Antoine Pitrou
Antoine Pitrou added the comment: I can reproduce this with both SVN trunk and 2.5.1 (on an x86 Mandriva box). -- nosy: +pitrou _ Tracker <[EMAIL PROTECTED]> _ _

[issue1640] Enhancements for mathmodule

2008-01-20 Thread Mark Dickinson
Mark Dickinson added the comment: No: IEEE-754r and the C99 standard both say clearly that atanh(1) should be infinity and atanh(-1) should be -infinity, and furthermore that the 'divide-by-zero' exception should be raised rather than the 'invalid' exception. It's a singularity, just like

[issue1640] Enhancements for mathmodule

2008-01-20 Thread George Castillo
George Castillo added the comment: Just a quick addition here regarding the singularities to these functions. The atanh(x) is only defined for |x| < 1, so atanh(1) or atanh(-1) isn't singular there so much as simply isn't defined. So, even though the function approaches infinite as x -> 1, it w

[issue1878] class attribute cache failure (regression)

2008-01-20 Thread Paul Pogonyshev
Paul Pogonyshev added the comment: It doesn't help: ERROR: test_default_property (test._gc.AbstractGCProtectorTestCase) -- Traceback (most recent call last): File "/home/paul/notify/test/_gc.py", line 59, in test_default_prope

[issue1878] class attribute cache failure (regression)

2008-01-20 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: The issue seems similar to the one we had in ctypes when the method attribute cache was implemented. Ctypes was corrected in r59943. Maybe similar changes are needed for this extension. For example, PyDict_SetItemString (AbstractGCProtector_Type.tp_dic

[issue1878] class attribute cache failure (regression)

2008-01-20 Thread Paul Pogonyshev
Paul Pogonyshev added the comment: Even if there is an easy workaround for the extension (or even a fix, if modifying 'tp_dict' is not legal), I don't think it would be acceptable to make a backward-incompatible change in 2.6. I mean, sure Py-notify is by no means a widely-used library, but can

[issue1720595] Allow T_BOOL in PyMemberDef definitions

2008-01-20 Thread Antoine Pitrou
Antoine Pitrou added the comment: It seems to me that, when a boolean is to be represented, most C programmers would expect a char rather than an int. Also an int would make the object larger without any benefit. As for type checking, Angelo's patch already does a PyBool_Check against the argume

[issue1363] python 2.4.4 fails on solaris (sun4u sparc SUNW, Sun-Fire-880)

2008-01-20 Thread Christian Heimes
Changes by Christian Heimes: -- priority: -> normal __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list Unsubscribe: http://m

[issue1877] unhelpful error when calling "python "

2008-01-20 Thread Nick Coghlan
Nick Coghlan added the comment: I removed the easy tag. I'll try to come up with some ideas for making the error message more helpful without making it misleading. __ Tracker <[EMAIL PROTECTED]> __

[issue1877] unhelpful error when calling "python "

2008-01-20 Thread Georg Brandl
Georg Brandl added the comment: No idea about the "easy" -- I haven't really looked at the code, but amending the error message would be a good thing. __ Tracker <[EMAIL PROTECTED]> __

[issue1877] unhelpful error when calling "python "

2008-01-20 Thread Nick Coghlan
Nick Coghlan added the comment: In what sense is this being flagged as easy? All the runpy code knows at this point is that it asked the import system for the __main__ module's code object and didn't get one. __main__ always exists, so the module is definitely able to be found - working out after

[issue1441] Cycles through ob_type aren't freed

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

[issue1675] Race condition in os.makedirs

2008-01-20 Thread Gabriel Genellina
Changes by Gabriel Genellina: -- nosy: +gagenellina __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list Unsubscribe: http://ma

[issue1343] XMLGenerator: nice elements

2008-01-20 Thread Christian Heimes
Changes by Christian Heimes: -- keywords: +easy, patch priority: -> normal __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list

[issue1215] Python hang when catching a segfault

2008-01-20 Thread Christian Heimes
Changes by Christian Heimes: -- components: +Documentation keywords: +easy priority: -> normal __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bug

[issue1825] msilib.add_data() takes exactly three parameters

2008-01-20 Thread Christian Heimes
Changes by Christian Heimes: -- keywords: +easy, patch priority: -> low __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list Un

[issue1817] module-cgi: handling GET and POST together

2008-01-20 Thread Christian Heimes
Changes by Christian Heimes: -- components: +Library (Lib) priority: -> normal type: -> rfe __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-

[issue1836] 'weekly' rotating logging file rotation incorrect

2008-01-20 Thread Christian Heimes
Changes by Christian Heimes: -- keywords: +easy priority: -> normal __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list Unsubs

[issue1622] zipfile hangs on certain zip files

2008-01-20 Thread Christian Heimes
Changes by Christian Heimes: -- priority: -> normal __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list Unsubscribe: http://m

[issue1874] email parser does not register a defect for invalid Content-Transfer-Encoding on multipart messages

2008-01-20 Thread Christian Heimes
Changes by Christian Heimes: -- keywords: +easy, patch priority: -> normal __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list

[issue1615] descriptor protocol bug

2008-01-20 Thread Christian Heimes
Changes by Christian Heimes: -- priority: -> high __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue1856] shutdown (exit) can hang or segfault with daemon threads running

2008-01-20 Thread Christian Heimes
Changes by Christian Heimes: -- priority: -> high __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue1327] Python 2.4+ spends too much time in PyEval_EvalFrame w/ xmlrpmclib

2008-01-20 Thread Christian Heimes
Changes by Christian Heimes: -- priority: -> normal __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list Unsubscribe: http://m

[issue1772] popen fails when there are two or more pathnames/parameters with spaces

2008-01-20 Thread Christian Heimes
Christian Heimes added the comment: The popen*() function don't quote the paths for you. Please use the subprocess module. It takes care of the quoting on Windows. -- nosy: +tiran resolution: -> works for me status: open -> closed __ Tracker <[EMAIL PROT

[issue1432] Strange behavior of urlparse.urljoin

2008-01-20 Thread Christian Heimes
Changes by Christian Heimes: -- priority: -> normal versions: -Python 2.4 __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list

[issue1556] Failure when calling __str__ for MIMEBase(message, rfc822) objects

2008-01-20 Thread Christian Heimes
Changes by Christian Heimes: -- priority: -> normal versions: +Python 2.6 -Python 2.4 __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list ma

[issue1454285] test_parsedate_acceptable_to_time_functions+DST == :-(

2008-01-20 Thread Georg Brandl
Changes by Georg Brandl: -- assignee: bwarsaw.historic -> barry nosy: +barry _ Tracker <[EMAIL PROTECTED]> _ ___ Python-bugs-list mai

[issue1552] fromfd() and socketpair() should return wrapped sockets

2008-01-20 Thread Christian Heimes
Changes by Christian Heimes: -- keywords: +easy, patch priority: -> normal versions: -Python 2.4 __ Tracker <[EMAIL PROTECTED]> __ ___ Python-

[issue1523] xdrlib fails to detect overflow (struct bug?)

2008-01-20 Thread Christian Heimes
Changes by Christian Heimes: -- priority: -> normal __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list Unsubscribe: http://m

[issue1511] csv input converts \r\n to \n but csv output does not when a field has internal line breaks

2008-01-20 Thread Christian Heimes
Changes by Christian Heimes: -- priority: -> normal __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list Unsubscribe: http://m

[issue1429] FD leak in SocketServer

2008-01-20 Thread Christian Heimes
Changes by Christian Heimes: -- priority: -> high versions: +Python 2.6 -Python 2.4 __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mail

[issue1545463] New-style classes fail to cleanup attributes

2008-01-20 Thread Georg Brandl
Georg Brandl added the comment: In the light of no further results, closing this bug. -- nosy: +georg.brandl resolution: -> wont fix status: open -> closed _ Tracker <[EMAIL PROTECTED]> __

[issue1434] SocketServer creates non-blocking files

2008-01-20 Thread Christian Heimes
Changes by Christian Heimes: -- priority: -> normal __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list Unsubscribe: http://m

[issue1375] hotshot IndexError when loading stats

2008-01-20 Thread Christian Heimes
Changes by Christian Heimes: -- keywords: +easy priority: -> normal __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list Unsubs

[issue1363] python 2.4.4 fails on solaris (sun4u sparc SUNW, Sun-Fire-880)

2008-01-20 Thread Christian Heimes
Christian Heimes added the comment: Please provide the logs. I'm going to close the bug in two week unless you respond. -- nosy: +tiran status: open -> pending __ Tracker <[EMAIL PROTECTED]> _

[issue1224] SimpleHTTPServer doesn't understand // at beginning of path anymore

2008-01-20 Thread Christian Heimes
Changes by Christian Heimes: -- keywords: +easy priority: -> normal versions: +Python 2.6 -Python 2.4 __ Tracker <[EMAIL PROTECTED]> __ ___ Pyt

[issue965065] document docs.python.org in PEP-101

2008-01-20 Thread Georg Brandl
Changes by Georg Brandl: -- assignee: fdrake -> georg.brandl nosy: +georg.brandl Tracker <[EMAIL PROTECTED]> ___ Python-bugs-list ma

[issue1219903] tp_richcompare documentation wrong and incomplete

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

[issue1597000] Use \r\n, not \n for HTTP headers

2008-01-20 Thread Georg Brandl
Changes by Georg Brandl: -- title: HTTP headers -> Use \r\n, not \n for HTTP headers _ Tracker <[EMAIL PROTECTED]> _ ___ Python-bugs-

[issue760657] Tutorial: executable scripts on Windows

2008-01-20 Thread Georg Brandl
Georg Brandl added the comment: Added a blurb in r60145. The details are in the new "Using on Windows" document. -- assignee: fdrake -> georg.brandl nosy: +georg.brandl resolution: -> fixed status: open -> closed Tracker <[EMAIL PROTECTED]>

[issue962226] Python 2.3.4 on Linux: test test_grp failed

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

[issue1241545] garbage collection asserts failing

2008-01-20 Thread Christian Heimes
Christian Heimes added the comment: No response from the OP in the last 2 years. I'm closing this bug. -- nosy: +tiran resolution: -> out of date status: open -> closed _ Tracker <[EMAIL PROTECTED]> _

[issue832159] C++ extensions using SWIG and MinGW

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

[issue538961] Using the lib index mechanically

2008-01-20 Thread Georg Brandl
Georg Brandl added the comment: I think the upcoming 2.6 release will provide the necessary functions to create such a feature. -- assignee: fdrake -> georg.brandl nosy: +georg.brandl resolution: -> fixed status: open -> closed Tracker <[EMAIL PROTE

[issue1373762] Tweak pprint.PrettyPrinter.format for subclassing

2008-01-20 Thread Georg Brandl
Georg Brandl added the comment: This has now been fixed with #1351692. -- assignee: fdrake -> georg.brandl nosy: +georg.brandl resolution: -> fixed status: open -> closed _ Tracker <[EMAIL PROTECTED]> ___

[issue1304179] 2.3.5 configure / make infinite loop

2008-01-20 Thread Christian Heimes
Christian Heimes added the comment: Yes, the makefile runs ./configure when the configure script is newer than Makefile. -- nosy: +tiran resolution: -> out of date status: open -> closed _ Tracker <[EMAIL PROTECTED]>

[issue1597000] HTTP headers

2008-01-20 Thread Georg Brandl
Georg Brandl added the comment: Lowering priority. -- components: +Library (Lib) -None keywords: +easy nosy: +georg.brandl -gbrandl.historic priority: normal -> low versions: +Python 2.5, Python 2.6, Python 3.0 _ Tracker <[EMAIL PROTECTED]>

[issue898271] symtable module crashes w/ coding declaration

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

[issue1205736] wrong location for math lib with --prefix

2008-01-20 Thread Christian Heimes
Christian Heimes added the comment: No response in more than 2 years, closing. -- nosy: +tiran resolution: -> out of date status: open -> closed _ Tracker <[EMAIL PROTECTED]> _

[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]> _ __

[issue1533491] C/API sec 10 is clipped

2008-01-20 Thread Georg Brandl
Georg Brandl added the comment: They have since been filled. -- nosy: +georg.brandl -gbrandl.historic resolution: -> out of date status: open -> closed _ Tracker <[EMAIL PROTECTED]> __

[issue786827] IDLE starts with no menus (Cygwin build of python2.3)

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

[issue1099746] copy.deepcopy barfs when copying a class derived from dict

2008-01-20 Thread Christian Heimes
Changes by Christian Heimes: -- resolution: -> duplicate status: open -> closed superseder: -> deepcopying listlike and dictlike objects _ Tracker <[EMAIL PROTECTED]> _ __

[issue874900] threading module can deadlock after fork

2008-01-20 Thread Christian Heimes
Changes by Christian Heimes: -- priority: normal -> high type: -> behavior versions: +Python 2.6 -Python 2.3 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

[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]> ___

[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

[issue1092502] Memory leak in socket.py on Mac OS X

2008-01-20 Thread Martey Dodoo
Martey Dodoo added the comment: Just wanted to note that the good people of comp.lang.python helped me figure out that the issue is actually http://bugs.python.org/issue1389051, in case anyone in similar straits ended up here. _ Tracker <[EMAIL PROTECTED]>

[issue767645] incorrect os.path.supports_unicode_filenames

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

[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 _

[issue1095821] The doc for DictProxy is missing

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

[issue1072642] dyld: ./python.exe multiple definitions of symbol _BC

2008-01-20 Thread Christian Heimes
Christian Heimes added the comment: I interpret 3 years of silence as yes, Raymond :) -- nosy: +tiran resolution: -> invalid status: open -> closed _ 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]> __

[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]>

[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]> __

[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]> __

[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]>

[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]>

[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]> _

[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]>

[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]>

[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]> __

[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

[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

[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]>

[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

[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

[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

[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]> ___

[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

[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]> __ __

[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

[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]> _

[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

[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 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

[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]> __

[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

  1   2   >