[issue1029] session error

2007-06-08 Thread Martin v. Löwis
Changes by Martin v. Löwis: __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1029> __ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mai

[issue1720897] fix 1668596: copy datafiles properly when package_dir is ' '

2007-08-08 Thread Martin v. Löwis
Martin v. Löwis added the comment: URL test (http://www.python.org/sf/1668596) -- nosy: +loewis _ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/iss

[issue1000] Test

2007-08-17 Thread Martin v. Löwis
New submission from Martin v. Löwis: This contains a word egastono that is unlikely to occur elsewhere -- messages: 55039 nosy: loewis severity: normal status: open title: Test __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/

[issue533281] bsddb module needs iterators

2007-08-23 Thread Martin v. Löwis
Martin v. Löwis added the comment: It had indeed the status Fixed/Open on SF. It was marked as Fixed and Closed by rhettinger, then reopened by rhettinger in response to my comment in msg53513. It does not refer to _bsddb.c, but bsddbmodule.c. Are you saying that bsddbmodule.c supports __iter__

[issue1542308] Nested finally in generators don't follow PEP 342

2007-08-24 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- priority: immediate -> normal _ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1542308> _ ___ Python-bugs-li

[issue837234] Tk.quit and sys.exit cause Fatal Error

2007-08-28 Thread Martin v. Löwis
Martin v. Löwis added the comment: It should not be possible to trigger Py_FatalError through pure Python code. I still haven't tried reproducing the problem, but if it is reproducable, it's a bug. Tracker <[EMAIL PROTECTED]> <htt

[issue877124] configure links unnecessary library libdl

2007-08-28 Thread Martin v. Löwis
Martin v. Löwis added the comment: Yes, nobody seems to be interested in fixing it. Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue877124> ___ Python-bugs-

[issue1055] argument parsing in datetime_strptime

2007-08-29 Thread Martin v. Löwis
New submission from Martin v. Löwis: In r57374, the ParseTuple string for datetime_strptime was changed from ss:datetime to uu:datetime, without adjusting the output arguments. It's not clear to me what the rationale of this change was; it is incorrect as u outputs Py_UNICODE, not

[issue1055] argument parsing in datetime_strptime

2007-08-29 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- nosy: +gvanrossum __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1055> __ ___ Python-bugs-list mailing list Unsubs

[issue1055] argument parsing in datetime_strptime

2007-08-29 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- nosy: -gvanrossum __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1055> __ ___ Python-bugs-list mailing list Unsubs

[issue1049] socket.socket.getsockname() has inconsistent UNIX/Windows behavior

2007-08-29 Thread Martin v. Löwis
Martin v. Löwis added the comment: I think it is neither possible nor "good" to produce a uniform result. Python traditionally exposes APIs "as-is", providing the system actually has an API with the same name. It never tries to hide differing system behaviors in the Python

[issue1055] argument parsing in datetime_strptime

2007-08-29 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- priority: -> normal __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1055> __ ___ Python-bugs-list mailing list Uns

[issue1040] Unicode problem with TZ

2007-08-29 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- assignee: -> loewis __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1040> __ ___ Python-bugs-list mailing list Uns

[issue1040] Unicode problem with TZ

2007-08-30 Thread Martin v. Löwis
Martin v. Löwis added the comment: This is now fixed in r57720. Using wide APIs would be possible through GetTimeZoneInformation, however, then TZ won't be supported anymore (unless the CRT code to parse TZ is duplicated). -- nosy: +loewis resolution: -> fixed status: open -

[issue1060] zipfile cannot handle files larger than 2GB (inside archive)

2007-08-30 Thread Martin v. Löwis
Martin v. Löwis added the comment: I now see the problem. What you want to do cannot possibly work. You are trying to create a string object that is larger than 2GB; this is not possible on a 32-bit system (which I assume you are using). No matter how you modify the read() function, it would

[issue1039] Asssertion in Windows debug build

2007-08-30 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- resolution: -> accepted __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1039> __ ___ Python-bugs-list mailing list Uns

[issue1675334] Draft implementation for PEP 364

2007-08-30 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- versions: +Python 3.0 -Python 2.6 _ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1675334> _ ___ Python-bugs-list

[issue1001] 2to3 crashes on input files with no trailing newlines

2007-08-30 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- versions: +Python 3.0 __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1001> __ ___ Python-bugs-list mailing list Unsubs

[issue1463370] Add .format() method to str and unicode

2007-08-30 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- versions: +Python 3.0 _ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1463370> _ ___ Python-bugs-list mailing list

[issue1753395] struni: assertion in Windows debug build

2007-08-30 Thread Martin v. Löwis
Martin v. Löwis added the comment: The patch looks fine to me, please apply. -- assignee: loewis -> georg.brandl resolution: -> accepted _ Tracker <[EMAIL PROTECTED]> <http://bugs.python.o

[issue1746880] AMD64 installer does not place python25.dll in system dir

2007-08-30 Thread Martin v. Löwis
Martin v. Löwis added the comment: I have now fixed it in 57750, 57751, 57754. I leave the bug open until I can actually test it. -- resolution: -> fixed _ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/

[issue1062] nice to have a way to tell if a socket is bound

2007-08-30 Thread Martin v. Löwis
Martin v. Löwis added the comment: Given that the underlying platform has no support for that, it will be difficult to implement correctly across all systems. -- nosy: +loewis __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/

[issue1528802] Turkish Character

2007-08-30 Thread Martin v. Löwis
Martin v. Löwis added the comment: I agree with cartman: Python behaves as designed in all cases discussed here. Closing this report as invalid. -- nosy: +loewis _ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/iss

[issue1709599] run test_1565150(test_os.py) only on NTFS

2007-08-30 Thread Martin v. Löwis
Martin v. Löwis added the comment: Thanks for the patch. Committed as r57759 and r57760. I added it to the trunk as well, as it might be possible that the test is run on FAT even if the operating system is Windows XP. -- nosy: +loewis resolution: -> accepted status: open ->

[issue1061] ABC caches should use weak refs

2007-08-30 Thread Martin v. Löwis
Martin v. Löwis added the comment: The fatal error is raised if the stack overflows in the process of handling RuntimeError. In certain cases, the C algorithms won't bail out if a RuntimeError is raised, and just catch it. If that then causes another stack overflow, Python gives up. One

[issue1064] Test issue

2007-08-30 Thread Martin v. Löwis
New submission from Martin v. Löwis: Let's see who gets this -- assignee: georg.brandl messages: 55508 nosy: georg.brandl, loewis severity: normal status: open title: Test issue __ Tracker <[EMAIL PROTECTED]> <http://bugs.python

[issue1064] Test issue

2007-08-30 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- resolution: -> invalid status: open -> closed __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1064> __ ___ Python

[issue1067] test_smtplib failures (caused by asyncore)

2007-08-30 Thread Martin v. Löwis
Martin v. Löwis added the comment: I think it's incorrect: asynchat operates on bytes, not strings, as it directly interfaces with the socket, and no encoding is specified for the protocol. So, IMO, callers should be expected to pass bytes only, as terminator and as data. --

[issue1069] invalid file encoding results in "SyntaxError: None"

2007-08-31 Thread Martin v. Löwis
Martin v. Löwis added the comment: This is now fixed in r57838. -- resolution: -> fixed status: open -> closed __ Tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue1070] unicode identifiers in error messages

2007-08-31 Thread Martin v. Löwis
Martin v. Löwis added the comment: This is now fixed in r57837 -- resolution: -> fixed status: open -> closed __ Tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue1076] py3 patch: full Unicode version for winreg module

2007-08-31 Thread Martin v. Löwis
Martin v. Löwis added the comment: While I agree with the principle (use wide APIs where possible), I'd like to point out that they don't work on Windows 95 (at least some don't; if you link with MSLU, you get some more to work); that was the major reason not to use them in the p

[issue1073] Mysterious failure under Windows

2007-08-31 Thread Martin v. Löwis
Martin v. Löwis added the comment: I don't see the problem. When open() reports that the file does not exist, the most likely reason is that it really does not exist. Perhaps it has not been created, yet, and you need to wait until it has been created before you can open it? --

[issue1073] Mysterious failure under Windows

2007-08-31 Thread Martin v. Löwis
Martin v. Löwis added the comment: I'm closing this as "works for me" now. It cannot possibly be a bug in Python, since the error was created by the operating system; Python does not make it up randomly. I also doubt that the operating system will arbitrarily report that a file is

[issue1737210] Add/Remove programs shows Martin v Löwis

2007-08-31 Thread Martin v. Löwis
Martin v. Löwis added the comment: I have now changed the string to "Python Software Foundation" in r57859, r57860, and r57861. -- resolution: -> fixed status: open -> closed versions: +Python 2.6, Python 3.0 _ Tracker <[EMAI

[issue1084] ''.find() gives wrong result in Python built with ICC

2007-09-02 Thread Martin v. Löwis
Martin v. Löwis added the comment: It definitely sounds like a compiler bug. Unless you can provide further details to the specific error in the C code of Python, it's likely that we can do little about it. If you want to analyze this further, here is a number of things you can try: - co

[issue1085] OS X 10.5.x Build Problems

2007-09-02 Thread Martin v. Löwis
Martin v. Löwis added the comment: This is a duplicate of #1078. -- nosy: +loewis resolution: -> duplicate status: open -> closed superseder: -> cachersrc.py using tuple unpacking args __ Tracker <[EMAIL PROTECTED]> <http://bugs.py

[issue1084] ''.find() gives wrong result in Python built with ICC

2007-09-02 Thread Martin v. Löwis
Martin v. Löwis added the comment: If you are curious, we could now try to find out what precisely goes wrong. The procedure would be this * after each step, check whether the problem still occurs a) resolve the includes manually, then strip everything that isn't needed. This could start

[issue1746880] AMD64 installer does not place python25.dll in system dir

2007-09-02 Thread Martin v. Löwis
Martin v. Löwis added the comment: Mark Hammond has now confirmed it worked for 3.0a1, so closing it. -- status: open -> closed _ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/

[issue1759169] clean up Solaris port and allow C99 extension modules

2007-09-02 Thread Martin v. Löwis
Martin v. Löwis added the comment: I don't understand the problem. What Solaris version are you using? Why do you want to remove _XOPEN_SOURCE? Solaris considers this as a request for XPG 4.2 only _XOPEN_SOURCE_EXTENDED is defined, which it shouldn't be on

[issue1722225] Build on QNX

2007-09-02 Thread Martin v. Löwis
Martin v. Löwis added the comment: A 2.5 patch would not be accepted; there won't be any new features for 2.5 , and new port would be a new feature. Procedurally, are you willing to support a QNX port for the coming years (say, 5 years)? Otherwise, there is little point in accepting s

[issue1694155] Python 2.5 installer ended prematurely

2007-09-02 Thread Martin v. Löwis
Martin v. Löwis added the comment: Closing because of lack of feedback. (it may be that I got feedback in private mail off-tracker; I don't remember). -- resolution: -> works for me status: open -> closed _ Tracker <[EMAIL PRO

[issue1654408] Installer should split tcl/tk and tkinter install options.

2007-09-02 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- severity: normal -> minor _ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1654408> _ ___ Python-bugs-li

[issue1752184] PyHeapTypeObject fix

2007-09-02 Thread Martin v. Löwis
Martin v. Löwis added the comment: The source of make_type is in Parser/asdl_c.py. -- nosy: +loewis _ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/iss

[issue1087] py3k os.popen result is not iterable, patch attached

2007-09-02 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- keywords: +patch __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1087> __ ___ Python-bugs-list mailing list Unsubs

[issue1006] Refactor test_winreg.py to use unittest.

2007-09-02 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- keywords: +patch __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1006> __ ___ Python-bugs-list mailing list Unsubs

[issue1007] [py3k] Fix dumbdbm, which fixes test_shelve (for me); instrument other tests so we catch this sooner (and more directly)

2007-09-02 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- keywords: +patch __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1007> __ ___ Python-bugs-list mailing list Unsubs

[issue1012] Broken URL at Doc/install/index.rst

2007-09-02 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- keywords: +patch __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1012> __ ___ Python-bugs-list mailing list Unsubs

[issue1015] [PATCH] Updated patch for rich dict view (dict().keys()) comparisons

2007-09-02 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- keywords: +patch __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1015> __ ___ Python-bugs-list mailing list Unsubs

[issue1016] [PATCH] Updated fix for string to unicode fixes in time and datetime

2007-09-02 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- keywords: +patch __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1016> __ ___ Python-bugs-list mailing list Unsubs

[issue1017] [PATCH] Add set operations (and, or, xor, subtract) to dict views

2007-09-02 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- keywords: +patch __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1017> __ ___ Python-bugs-list mailing list Unsubs

[issue1023] [PATCH] Unicode fixes in floatobject and moduleobject

2007-09-02 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- keywords: +patch __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1023> __ ___ Python-bugs-list mailing list Unsubs

[issue1029] py3k: io.StringIO.getvalue() returns \r\n

2007-09-02 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- keywords: +patch __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1029> __ ___ Python-bugs-list mailing list Unsubs

[issue1030] py3k: Adapt _winreg.c to the new buffer API

2007-09-02 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- keywords: +patch __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1030> __ ___ Python-bugs-list mailing list Unsubs

[issue1000] Patch to rename *Server modules to lower-case

2007-09-02 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- keywords: +patch __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1000> __ ___ Python-bugs-list mailing list Unsubs

[issue1002] Patch to rename HTMLParser module to lower_case

2007-09-02 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- keywords: +patch __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1002> __ ___ Python-bugs-list mailing list Unsubs

[issue1004] MultiMethods with type annotations in 3000

2007-09-02 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- keywords: +patch __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1004> __ ___ Python-bugs-list mailing list Unsubs

[issue1005] Patches to rename Queue module to queue

2007-09-02 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- keywords: +patch __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1005> __ ___ Python-bugs-list mailing list Unsubs

[issue1019] Cleanup pass on _curses and _curses_panel

2007-09-02 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- keywords: +patch __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1019> __ ___ Python-bugs-list mailing list Unsubs

[issue1022] use bytes for code objects

2007-09-02 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- keywords: +patch __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1022> __ ___ Python-bugs-list mailing list Unsubs

[issue1026] Backport ABC to 2.6

2007-09-02 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- keywords: +patch __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1026> __ ___ Python-bugs-list mailing list Unsubs

[issue1027] uudecoding (uu.py) does not supprt base64, patch attached

2007-09-02 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- keywords: +patch __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1027> __ ___ Python-bugs-list mailing list Unsubs

[issue1032] Improve the hackish runtime_library_dirs support for gcc

2007-09-02 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- keywords: +patch __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1032> __ ___ Python-bugs-list mailing list Unsubs

[issue1034] [patch] Add 2to3 support for displaying warnings as Python comments

2007-09-02 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- keywords: +patch __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1034> __ ___ Python-bugs-list mailing list Unsubs

[issue1043] test_builtin failure on Windows

2007-09-02 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- keywords: +patch __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1043> __ ___ Python-bugs-list mailing list Unsubs

[issue1047] py3k: corrections for test_subprocess on windows

2007-09-02 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- keywords: +patch __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1047> __ ___ Python-bugs-list mailing list Unsubs

[issue1061] ABC caches should use weak refs

2007-09-02 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- keywords: +patch __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1061> __ ___ Python-bugs-list mailing list Unsubs

[issue1071] unicode.translate() doesn't error out on invalid translation table

2007-09-02 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- keywords: +patch __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1071> __ ___ Python-bugs-list mailing list Unsubs

[issue1075] py3k: Unicode error in os.stat on Windows

2007-09-02 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- keywords: +patch __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1075> __ ___ Python-bugs-list mailing list Unsubs

[issue1076] py3 patch: full Unicode version for winreg module

2007-09-02 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- keywords: +patch __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1076> __ ___ Python-bugs-list mailing list Unsubs

[issue1086] test_email failed

2007-09-02 Thread Martin v. Löwis
Martin v. Löwis added the comment: I don't think recoding the message is the right thing to do. Instead, the email package should be fixed to not treat the bytes before the first part of a multipart message as text, or else assume that it is Latin-1 encoded (it's certainly not *meant*

[issue1088] News page broken link to 3.0a1

2007-09-02 Thread Martin v. Löwis
Martin v. Löwis added the comment: Thanks for the report. This is now fixed. -- nosy: +loewis resolution: -> fixed status: open -> closed __ Tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue1093] product function patch

2007-09-02 Thread Martin v. Löwis
Martin v. Löwis added the comment: -1. I doubt this is needed often enough to justify a builtin function. -- nosy: +loewis __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/

[issue1075] py3k: Unicode error in os.stat on Windows

2007-09-03 Thread Martin v. Löwis
Martin v. Löwis added the comment: I could not quite reproduce this on the German version (the error text reads " Das System kann die angegebene Datei nicht finden" on XP), however, the patch looks good and it fixes the same problem for the registry functions (where I get "

[issue1076] py3 patch: full Unicode version for winreg module

2007-09-03 Thread Martin v. Löwis
Martin v. Löwis added the comment: Thanks for the patch. Committed as r57928 -- resolution: -> accepted status: open -> closed __ Tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue1089] ever considered adding static typing to python?

2007-09-03 Thread Martin v. Löwis
New submission from Martin v. Löwis: Yes. -- nosy: +loewis resolution: -> wont fix status: open -> closed __ Tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue1094] TypeError in poplib.py

2007-09-03 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- keywords: +patch __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1094> __ ___ Python-bugs-list mailing list Unsubs

[issue1114345] Add SSL certificate validation

2007-09-03 Thread Martin v. Löwis
Martin v. Löwis added the comment: There definitely won't be any new features in 2.5.x. However, I think Bill said he might make this available separately. _ Tracker <[EMAIL PROTECTED]> <http://bugs.python.or

[issue1762561] unable to serialize Infinity or NaN on ARM using marshal

2007-09-03 Thread Martin v. Löwis
Martin v. Löwis added the comment: I'm not sure like the naming of the format. "mixed-endian" could mean anything. I doubt IEEE specifies this as a possible byte representation (but then, I'm uncertain whether IEEE specifies big-endian and little-endian, either). One option

[issue1097] input() should respect sys.stdin.encoding when in interactive mode

2007-09-03 Thread Martin v. Löwis
Martin v. Löwis added the comment: Thanks for the report. This is now fixed in r57947 -- nosy: +loewis resolution: -> fixed status: open -> closed __ Tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue1100] Can't input non-ascii characters in interactive mode

2007-09-04 Thread Martin v. Löwis
Martin v. Löwis added the comment: Thanks for the report. This is now fixed in r57957 (although I tested it only on Unix). -- nosy: +loewis resolution: -> fixed status: open -> closed __ Tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue1092] Unexpected results in Tutorial about Unicode

2007-09-04 Thread Martin v. Löwis
Martin v. Löwis added the comment: The first issue (non-ASCII characters won't work in interactive mode) was reported as issue 1100 also, and is now fixed in r57957. As for the other issues, I'm not quite sure what to make out of them - I see a different behavior: py> "Äpfe

[issue1374063] Broader iterable support for xmlrpclib

2007-09-04 Thread Martin v. Löwis
Martin v. Löwis added the comment: I have three problems with the current form of the patch: a) in the documentation, it should state that __dict__ is an attribute, not a method. b) why are you moving the subclassed-from-builtin types into the except block? It is there to reject things that

[issue1626801] posixmodule.c leaks crypto context on Windows

2007-09-04 Thread Martin v. Löwis
Martin v. Löwis added the comment: Ok, I added a comment in r57958 -- resolution: -> fixed status: open -> closed _ Tracker <[EMAIL PROTECTED]> <http://bugs.python.o

[issue1376361] Use 'seealso' to add examples to LibRef

2007-09-04 Thread Martin v. Löwis
Martin v. Löwis added the comment: I'm closing this as out-of-date, now that the documentation format is not based on TeX anymore. If you would like to port this to Sphinx, feel free to reopen it (or submit any such feature as a new patch). -- nosy: +loewis resolution: -> out

[issue1388440] add more readline support

2007-09-04 Thread Martin v. Löwis
Martin v. Löwis added the comment: Thanks for the patch. Committed as r57960. -- nosy: +loewis versions: +Python 2.6 -Python 2.4 _ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/iss

[issue1388440] add more readline support

2007-09-04 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- resolution: -> accepted status: open -> closed _ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1388440> _ __

[issue1031213] Use correct encoding for printing SyntaxErrors

2007-09-04 Thread Martin v. Löwis
Martin v. Löwis added the comment: Thanks for the patch. It wouldn't work as-is, because it broke PGEN. I fixed that, and committed the change as r57961 and r57962. -- resolution: -> accepted status: open -> closed versions: +Python 2.5,

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

2007-09-04 Thread Martin v. Löwis
Martin v. Löwis added the comment: What's wrong with py> for x in 1,2,3:print(x,end=" ") ... 1 2 3 Closing as invalid. -- nosy: +loewis resolution: -> invalid status: open -> closed __ Tracker <[EMAIL PROTECTED]> <

[issue1103] Typo in dummy_threading documentation

2007-09-04 Thread Martin v. Löwis
Martin v. Löwis added the comment: Why do you think so? The documentation is correct as it stands; dummy_threading should be used when thread is not present, not when threading is not present (as threading will always be present, it just won't import when thread is not present). --

[issue1102] Add support for _msi.Record.GetString() and _msi.Record.GetInteger()

2007-09-04 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- assignee: -> loewis nosy: +loewis __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1102> __ ___ Python-bugs-li

[issue1105] patch for readme.txt in PCbuild8

2007-09-04 Thread Martin v. Löwis
Martin v. Löwis added the comment: Thanks for the patch. Committed as r57984 and r57985. -- nosy: +loewis resolution: -> accepted status: open -> closed __ Tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[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]> <http://bugs.python.

[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

[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

[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]> <http://bugs.python.o

[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]> <http://bugs.python.org/

[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]> <http://bugs.python.org/issue1112> __ ___ Python-bugs-list mailing list Unsubs

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

[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]> <http://bugs.python.o

[issue1115] Minor Change For Better cross compile

2007-09-06 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- keywords: +patch __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1115> __ ___ Python-bugs-list mailing list Unsubs

  1   2   3   4   5   6   7   8   9   10   >