[issue1112] Test debug assertion in bsddb test_1413192.py

2007-09-05 Thread Martin v. Löwis
Martin v. Löwis added the comment: Greg, can you take a look? If not, please unassign. -- assignee: -> gregory.p.smith nosy: +gregory.p.smith, loewis __ Tracker <[EMAIL PROTECTED]> __ ___

[issue1115] Minor Change For Better cross compile

2007-09-05 Thread Zhang Zengbo
New submission from Zhang Zengbo: Some test in configure.in is AC_TRY_RUN, which can be replaced by AC_TRY_COMPILE, achieve the same goal and give better support for cross compiling. This patch is for svn reversion 57996. -- files: autocheck.patch messages: 55678 nosy: zengbo severity:

[issue1101] Is there just no PRINT statement any more? Or it just doesn't work.

2007-09-05 Thread Martin v. Löwis
Martin v. Löwis added the comment: A plain "print" only results in output of "" in interactive mode, as interactive mode will not only perform the action, but also display the result. In a Python script, a plain "print" will have no effect. Guido, can you take a look at the proposed "what's new"

[issue1112] Test debug assertion in bsddb test_1413192.py

2007-09-05 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- keywords: +patch __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list Unsubscribe: http://mail.p

[issue1111] Users' directories information

2007-09-05 Thread Martin v. Löwis
Martin v. Löwis added the comment: Can you please elaborate? What does that have to do with Python? -- nosy: +loewis __ Tracker <[EMAIL PROTECTED]> __ _

[issue1114] _curses issues on 64-bit big-endian (e.g, AIX)

2007-09-05 Thread Luke Mewburn
New submission from Luke Mewburn: Attempting to use curses attributes with python 2.3.5 on AIX (64bit powerpc) doesn't work, and occasionally results in exceptions being raised. _cursesmodule.c assumes that attr_t is a `long' and uses the "l" decoding of PyArg_ParseTuple() to read values from py

[issue1101] Is there just no PRINT statement any more? Or it just doesn't work.

2007-09-05 Thread Richard Katz
Richard Katz added the comment: "What's wrong with py> for x in 1,2,3:print(x,end=" ")" - I'd like to suggest (for those of us just now focusing on Python 3.0) replacing the last 3 bullet points of the paragraph "Common Stumbling Blocks?" http://docs.python.org/dev/3.0/

[issue1113] interrupt_main() fails to interrupt raw_input()

2007-09-05 Thread Anand Patil
New submission from Anand Patil: Mac OS 10.4, Python 2.5 from pythonmac.org: The function listen() in the attached should be interrupted after a second, but it waits until return is pressed before catching the exception. -- components: Macintosh files: test.py messages: 55673 nosy: an

[issue1112] Test debug assertion in bsddb test_1413192.py

2007-09-05 Thread David Bolen
New submission from David Bolen: The change made to Lib/bsddb/test/test_1413192.py to clean up temporary files causes an abort in the DB library when trying to abort an open transaction at object destruction type - currently when the Python interpreter exits, because the transaction log file has

[issue1111] Users' directories information

2007-09-05 Thread Maciej Piechorka
New submission from Maciej Piechorka: User directories varies along systems. On unikses all user data is kept in $HOME directory. Configuration is kept in dot-files. However on others systems places are different. Using predefined values would be most convinent. -- components: Library (L

[issue1777530] ctypes on Solaris

2007-09-05 Thread Thomas Heller
Thomas Heller added the comment: Martin, here is a patch (solaris-2.patch), hopefully according to your comments. _ Tracker <[EMAIL PROTECTED]> _Index: util.py ==

[issue1110] Problems with the msi installer - python-3.0a1.msi

2007-09-05 Thread Vlastimil Brom
Vlastimil Brom added the comment: The path to the python executable on my system is: "C:\Python30\python.exe" The path to Program Files is "C:\Program Files", but it doesn't matter in that case, I guess. And yes, I use the console window (i.e. the cmd window in Windows) - the IDLE doesn't run

[issue978833] SSL-ed sockets don't close correct?

2007-09-05 Thread Martin v. Löwis
Martin v. Löwis added the comment: For 2.5, it reverts to the state of 2.4. You'll have to find a work-around on your own. Tracker <[EMAIL PROTECTED]> __

[issue978833] SSL-ed sockets don't close correct?

2007-09-05 Thread Arkadiusz Miskiewicz Arkadiusz Miskiewicz
Arkadiusz MiskiewiczArkadiusz Miskiewicz added the comment: How to deal with this on python 2.5.x? I assume that msg21288 means that fakeclose.diff isn't good way for python 2.5.x. Unfortunately there are web services that refuse to respond to second query if first

[issue1110] Problems with the msi installer - python-3.0a1.msi

2007-09-05 Thread Martin v. Löwis
Martin v. Löwis added the comment: There are really two issues here; it is usually better to report them separately, so they can be analyzed, fixed, and closed separately: a) the compileall script apparently fails (not surprisingly so, I never tested it for 3.0), and b) Python does not work on yo

[issue1110] Problems with the msi installer - python-3.0a1.msi

2007-09-05 Thread Vlastimil Brom
New submission from Vlastimil Brom: I encountered problems installing python 3.0 alpha 1 from the MSI installer supplied on the python download page (python-3.0a1.msi). If the advanced option of the installer ("compile .py files to bytecode after installation") is checked - the following messa

[issue1777530] ctypes on Solaris

2007-09-05 Thread Martin v. Löwis
Martin v. Löwis added the comment: The patch looks fine to me (with the addition of checking for sunos5 instead). A few things to consider: - you could check the system at import time, rather than call time, of _get_soname() - notice that the file is located in /usr/ccs/bin, which may not be in

[issue1109] Warning required when calling register() on an ABCMeta subclass

2007-09-05 Thread Mark Summerfield
New submission from Mark Summerfield: GvR asked me to add this to the bug tracker. If you do this: class A(ABCMeta): pass A.register(list) you get this error message: Traceback (most recent call last): File "", line 1, in RuntimeError: maximum recursion depth exceeded in __instancec

[issue1684991] Explain __method__ lookup semantics for new-style classes

2007-09-05 Thread Georg Brandl
Georg Brandl added the comment: Added a paragraph in rev. 57992, 57993. -- resolution: -> fixed status: open -> closed _ Tracker <[EMAIL PROTECTED]> _ _

[issue786737] patch for build with read-only $srcdir

2007-09-05 Thread Martin v. Löwis
Martin v. Löwis added the comment: Thanks for the patch. Committed as r57990 and r57991. -- resolution: -> accepted status: open -> closed versions: +Python 2.5, Python 2.6 -Python 2.3 Tracker <[EMAIL PROTECTED]>

[issue1108] Problem with doctest and decorated functions

2007-09-05 Thread Daniel Larsson
New submission from Daniel Larsson: Seems like doctest won't recognize functions inside the module under test are actually in that module, if the function is decorated by a decorator that wraps the function in an externally defined function, such as in this silly example: # decorator.py import f