[issue1216] Python2.5.1 fails to compile under VC.NET2002 ( 7.0 )

2007-10-12 Thread Martin v. Löwis
Martin v. Löwis added the comment: The actual change that broke that was r41672, which added the ULL suffix. r46064 fixed it for VC6 and embedded VC. Raising the minimum _MSC_VER to above 1300 is fine (VC 7.1 is 1310). I personally can't test with VS 2002 anymore, so I have to trust

[issue1216] Python2.5.1 fails to compile under VC.NET2002 ( 7.0 )

2007-10-12 Thread Martin v. Löwis
Martin v. Löwis added the comment: Thanks for the report. This is now fixed in r58430 and r584301 __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1216 __ ___ Python-bugs-list

[issue1216] Python2.5.1 fails to compile under VC.NET2002 ( 7.0 )

2007-10-12 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- resolution: - fixed status: open - closed __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1216 __ ___ Python-bugs-list mailing list

[issue1270] MemoryError when working on large dictionaries on Windows 2003 Server

2007-10-12 Thread Martin v. Löwis
Martin v. Löwis added the comment: I personally don't think this problem can be resolved by discussion. Instead, you have to use a debugger, debug your application, Python, and Windows, to find out the true cause of the problem. Only then discussion can be fruitful. If you cannot do these steps

[issue1270] MemoryError when working on large dictionaries on Windows 2003 Server

2007-10-12 Thread Martin v. Löwis
Martin v. Löwis added the comment: I set the IMAGE_FILE_LARGE_ADDRESS_AWARE flag on python and I still get the memoryerror exceptions. When they start happening there is still more than 1GB of available memory! Just in case it isn't clear: I still don't see an indication of a bug in Python

[issue1270] MemoryError when working on large dictionaries on Windows 2003 Server

2007-10-12 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- status: open - closed __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1270 __ ___ Python-bugs-list mailing list Unsubscribe: http

[issue1270] MemoryError when working on large dictionaries on Windows 2003 Server

2007-10-12 Thread Martin v. Löwis
Martin v. Löwis added the comment: Please understand that the purpose of this bug tracker is to track bug reports and patches to Python, not a means of getting help in using Python. If you think you have found a bug, please submit a bug report that allows us to reproduce the bug. If you merely

[issue1276] LookupError: unknown encoding: X-MAC-JAPANESE

2007-10-13 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- keywords: +patch __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1276 __ ___ Python-bugs-list mailing list Unsubscribe: http

[issue1280] PEP 3137: Make PyString's indexing and iteration return integers

2007-10-15 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- keywords: +patch __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1280 __ ___ Python-bugs-list mailing list Unsubscribe: http

[issue1663329] subprocess/popen close_fds perform poor if SC_OPEN_MAX is hi

2007-10-15 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- keywords: +patch _ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1663329 _ ___ Python-bugs-list mailing list Unsubscribe: http

[issue1297] pyconfig.h not compatible with MS VC++ Express Edition

2007-10-18 Thread Martin v. Löwis
Martin v. Löwis added the comment: What version of VC++ Express are you specifically referring to? -- nosy: +loewis __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1297

[issue1302] Fixes for profile/cprofile

2007-10-19 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- keywords: +patch __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1302 __ ___ Python-bugs-list mailing list Unsubscribe: http

[issue1308] unicode(None) anomaly

2007-10-21 Thread Martin v. Löwis
Martin v. Löwis added the comment: What answer did you expect instead? -- nosy: +loewis __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1308 __ ___ Python-bugs-list

[issue1308] unicode(None) anomaly

2007-10-22 Thread Martin v. Löwis
Martin v. Löwis added the comment: Ok. This is not a bug, but by design. unicode(X)==unicode(str(X)) for most things, and str(X)==repr(X) for most things. repr(None)=='None', hence the result you see. Closing as invalid. P.S. To respond via email, you have to add your email address to Your

[issue1309] windows build fix

2007-10-22 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- keywords: +patch __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1309 __ ___ Python-bugs-list mailing list Unsubscribe: http

[issue1312] doctest EXCEPTION_RE can't handle preceding output

2007-10-22 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- keywords: +patch __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1312 __ ___ Python-bugs-list mailing list Unsubscribe: http

[issue1318] Remove os.tmpnam() and os.tempnam() [patch]

2007-10-23 Thread Martin v. Löwis
Martin v. Löwis added the comment: Removing them because there is a replacement already is a better reason than removing them because they give (bogus) warnings, so I'm -0 now. As you say, tempfile is not any better from a security point of view in the cases where tmpnam or tempnam would

[issue1323] py3k: file.truncate() changes the file position

2007-10-24 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- keywords: +patch __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1323 __ ___ Python-bugs-list mailing list Unsubscribe: http

[issue1311] os.path.exists(os.devnull) regression on windows

2007-10-24 Thread Martin v. Löwis
Martin v. Löwis added the comment: The purpose of Py_GetFileAttributesEx* is to wrap GetFileAttributesEx, on systems where it doesn't exist (Windows 95 in particular). If it doesn't exist, it is emulated; if it exists, it is directly called. -- nosy: +loewis

[issue1311] os.path.exists(os.devnull) regression on windows

2007-10-24 Thread Martin v. Löwis
Martin v. Löwis added the comment: As Facundo found out, the behavior of os.path.exists is fairly irrelevant here, as that functions is trivial. What really matters is whether os.stat succeeds for NUL. Can those users for whom it succeeds please report what Windows versions they are using

[issue1311] os.path.exists(os.devnull) regression on windows

2007-10-24 Thread Martin v. Löwis
Martin v. Löwis added the comment: Please disregard Cygwin Python for this discussion. It (probably) uses the stat implementation from cygwin1.dll, which may work differently from Cygwin release to Cygwin release. __ Tracker [EMAIL PROTECTED] http

[issue1318] Remove os.tmpnam() and os.tempnam()

2007-10-25 Thread Martin v. Löwis
Martin v. Löwis added the comment: os.tmpfile() is the only method that has no duplicate in tempfile. Why do you say that? tempfile.mkstemp() does essentially the same as os.tmpfile(). The promise of tempfile.mkstemp is also bogus for every OS except Windows. IIRC only Windows supports

[issue1341] correction for test_fileinput in py3k on Windows

2007-10-27 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- keywords: +patch __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1341 __ ___ Python-bugs-list mailing list Unsubscribe: http

[issue1135] xview/yview of Tix.Grid is broken

2007-10-27 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- keywords: +patch __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1135 __ ___ Python-bugs-list mailing list Unsubscribe: http

[issue1345] Fix for test_netrc on Windows

2007-10-28 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- keywords: +patch __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1345 __ ___ Python-bugs-list mailing list Unsubscribe: http

[issue1347] BaseHTTPServer writing strings to bytes interface

2007-10-28 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- keywords: +patch __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1347 __ ___ Python-bugs-list mailing list Unsubscribe: http

[issue1350] IDLE - CallTips enhancement - show full doc-string in new window

2007-10-28 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- keywords: +patch __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1350 __ ___ Python-bugs-list mailing list Unsubscribe: http

[issue1351] Add getsize() to io instances

2007-10-28 Thread Martin v. Löwis
Martin v. Löwis added the comment: I'm skeptical: - If you add getsize, why not getlastchangeddate, getowner, getpermissions? - in general, streams (which really is the interface for file-like objects) don't have the notion of size; only some do. - what is the purpose of the f.tell fragment

[issue1355] xml.dom refers to PyXML, which is no longer maintained

2007-10-29 Thread Martin v. Löwis
Martin v. Löwis added the comment: Yes, the documentation should be changed. I feel sorry that you've wasted your time. -- nosy: +loewis __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1355

[issue1354] windows installer problem

2007-10-29 Thread Martin v. Löwis
Martin v. Löwis added the comment: Indeed, this tracker is not about obtaining support. It is a place for you to help us, not for us to help you. If you want to help, please report the precise URL, and compute and report the md5sum of the file you downloaded. -- nosy: +loewis

[issue1356] 3.0a1 Solaris w/ SUN C/C++

2007-10-29 Thread Martin v. Löwis
Martin v. Löwis added the comment: Thanks for the report. Fixed in r58705. -- nosy: +loewis __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1356 __ ___ Python-bugs-list

[issue1358] Compile error on OS X 10.5

2007-10-29 Thread Martin v. Löwis
Martin v. Löwis added the comment: Can you please also attach config.log (perhaps compressed)? -- nosy: +loewis __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1358

[issue1362] Simple mistake in http://docs.python.org/tut/node6.html

2007-10-29 Thread Martin v. Löwis
Martin v. Löwis added the comment: I fail to see the bug. The documentation is correct as it stands, ie. None is *not* displayed normally. IOW, writing is normally suppressed. -- nosy: +loewis resolution: - invalid status: open - closed __ Tracker

[issue1358] Compile error on OS X 10.5

2007-10-30 Thread Martin v. Löwis
Martin v. Löwis added the comment: There is an autoconf test that tries to compile | #include unistd.h | int | main () | { | setpgrp(0,0); | ; | return 0; | } (with many additional defines - see config.log.gz). This file compiles with the error message conftest.c:185: error: too many

[issue1365] bytes(int) constructor

2007-10-31 Thread Martin v. Löwis
Martin v. Löwis added the comment: Where is the patch? -- nosy: +loewis __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1365 __ ___ Python-bugs-list mailing list

[issue1374] IDLE - minor FormatParagraph bug fix

2007-11-02 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- keywords: +patch __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1374 __ ___ Python-bugs-list mailing list Unsubscribe: http

[issue1352] Preliminary stderr patch

2007-11-02 Thread Martin v. Löwis
Martin v. Löwis added the comment: I just created http://wiki.python.org/moin/TrackerAccessControl which specifies all permissions in the tracker in detail. -- nosy: +loewis __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1352

[issue1352] Preliminary stderr patch

2007-11-02 Thread Martin v. Löwis
Martin v. Löwis added the comment: Guido van Rossum added the comment: http://wiki.python.org/moin/TrackerAccessControl which specifies all permissions in the tracker in detail. Is it so that Anonymous User Developer Coordinator? Not in roundup per se, no. It is so

[issue1378] fromfd() and dup() for _socket on WIndows

2007-11-03 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- keywords: +patch __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1378 __ ___ Python-bugs-list mailing list Unsubscribe: http

[issue1379] reloading imported modules sometimes fail with 'parent not in sys.modules' error

2007-11-03 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- keywords: +patch __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1379 __ ___ Python-bugs-list mailing list Unsubscribe: http

[issue1381] cmath is numerically unsound

2007-11-03 Thread Martin v. Löwis
Martin v. Löwis added the comment: Can you propose a patch? -- nosy: +loewis __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1381 __ ___ Python-bugs-list mailing list

[issue1381] cmath is numerically unsound

2007-11-04 Thread Martin v. Löwis
Martin v. Löwis added the comment: It would be ok if a test is only run on a system with IEEE floats, and skipped elsewhere. For all practical purposes, Python assumes that all systems have IEEE float. __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1381

[issue1383] Backport abcoll to 2.6

2007-11-04 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- keywords: +patch __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1383 __ ___ Python-bugs-list mailing list Unsubscribe: http

[issue1385] hmac module violates RFC for some hash functions, e.g. sha512

2007-11-04 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- keywords: +patch __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1385 __ ___ Python-bugs-list mailing list Unsubscribe: http

[issue1390] toxml generates output that is not well formed

2007-11-04 Thread Martin v. Löwis
Martin v. Löwis added the comment: That's not a bug in Python, but in your script. You should not pass such a string to createComment. -- nosy: +loewis __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1390

[issue1390] toxml generates output that is not well formed

2007-11-05 Thread Martin v. Löwis
Martin v. Löwis added the comment: I'm not willing to change minidom unless there is precedence of how to deal with this case. So can you find DOM implementations in other languages that meet the DOM spec an still reject your code? __ Tracker [EMAIL PROTECTED

[issue1390] toxml generates output that is not well formed

2007-11-06 Thread Martin v. Löwis
Martin v. Löwis added the comment: Would anybody want to provide a patch, then? __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1390 __ ___ Python-bugs-list mailing list

[issue1390] toxml generates output that is not well formed

2007-11-07 Thread Martin v. Löwis
Martin v. Löwis added the comment: The standard procedure for an incompatible change would be to add such a parameter to 2.6, and then change the default behavior in 2.7 (or rather 3.1). Of course, people will not notice the change in 2.6, and then be surprised as much about the default change

[issue1411] A typo in tutorial

2007-11-08 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- severity: urgent - normal __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1411 __ ___ Python-bugs-list mailing list Unsubscribe: http

[issue1413] int literal methods inaccessible

2007-11-09 Thread Martin v. Löwis
Martin v. Löwis added the comment: See http://www.python.org/doc/2.5/ref/whitespace.html which says that you can put spaces between arbitrary tokens, and http://www.python.org/doc/2.5/ref/attribute-references.html which says that all of primary, ., and identifier are separate tokens

[issue1351] Add getsize() to io instances

2007-11-09 Thread Martin v. Löwis
Martin v. Löwis added the comment: Ok, I'm rejecting it now based on the YAGNI argument Guido brought up, and based on my own concerns. -- resolution: - rejected status: open - closed __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1351

[issue1689617] Intel icc build fails with optimizations -O2

2007-11-10 Thread Martin v. Löwis
Martin v. Löwis added the comment: Ok. Closing it as third-party. -- resolution: - invalid status: open - closed versions: +3rd party -Python 2.5 _ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1689617

[issue1425] readline: no display matches hook set

2007-11-11 Thread Martin v. Löwis
Martin v. Löwis added the comment: Thanks for the report. This is now fixed in r58940. -- resolution: - fixed status: open - closed __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1425

[issue1420] Unicode literals in tokenize.py and tests.

2007-11-11 Thread Martin v. Löwis
Martin v. Löwis added the comment: I think this patch is wrong. Python source code is inherently text, so generate_tokens should decode the input, rather than operating on bytes. -- nosy: +loewis __ Tracker [EMAIL PROTECTED] http://bugs.python.org

[issue1418] Python/hypot.c is never used

2007-11-11 Thread Martin v. Löwis
Martin v. Löwis added the comment: Thanks for the patch. Committed as r58941. -- resolution: - accepted status: open - closed __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1418

[issue1430] Installing on Vista asks to close Explorer (and Nokia PC Suite)

2007-11-12 Thread Martin v. Löwis
Martin v. Löwis added the comment: This error message is not produced by the Python MSI file, but by Windows installer itself. It computes the set of files that we are about to install, which includes the Microsoft C Runtime DLL. I guess that this file is also in use by Explorer. It is safe

[issue1431] pth files not loaded at startup

2007-11-12 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- keywords: +patch __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1431 __ ___ Python-bugs-list mailing list Unsubscribe: http

[issue1433] marshal roundtripping for unicode

2007-11-13 Thread Martin v. Löwis
Martin v. Löwis added the comment: As Guido says: this is by design. The Unicode type doesn't really support storage of surrogates; so don't use it for that. -- nosy: +loewis resolution: - wont fix status: open - closed __ Tracker [EMAIL PROTECTED] http

[issue1442] pythonstartup addition of minor error checking

2007-11-14 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- keywords: +patch __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1442 __ ___ Python-bugs-list mailing list Unsubscribe: http

[issue1448] Build Python with VS 2005(MSVC8)

2007-11-15 Thread Martin v. Löwis
Martin v. Löwis added the comment: I'm rejecting this patch, for several reasons: - it addresses too many issues in a single patch. Separate bug reports need to be submitted for independent issues. - for each issue, it fails to explain what the problem is. For example, some libraries

[issue1447] patch to make msvccompiler.py work with vs 2005(MSVC8)

2007-11-15 Thread Martin v. Löwis
Martin v. Löwis added the comment: tiran is correct. distutils should work without having to invoke a VS build environment. Relying on that environment would have worked way back to VC6 and earlier, but it would reduce the ease of use of distutils. Rejecting the patch. -- nosy: +loewis

[issue1449] make msi work the vs 2005(MSVC8)

2007-11-15 Thread Martin v. Löwis
Martin v. Löwis added the comment: I'm opposed to this patch. Any change to the MSI build process should only be made when/after the default compiler for Python is changed. That needs to be discussed on python-dev first, and I hope that the new build infrastructure will *not* use the PCbuild8

[issue1449] make msi work the vs 2005(MSVC8)

2007-11-15 Thread Martin v. Löwis
Martin v. Löwis added the comment: One issue that also needs discussion is the structure of the build directory. It could temporarily be PCbuild9, but in the long run, it should replace PCbuild. Apart from that, the issue is whether there should be a flat structure as it is currently in PCbuild

[issue1453] Python does not honor CFLAGS environment variable

2007-11-16 Thread Martin v. Löwis
Martin v. Löwis added the comment: In all versions of make, make CFLAGS=... should work fine (although that's not an environment variable). -- nosy: +loewis __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1453

[issue1453] Python does not honor CFLAGS environment variable

2007-11-16 Thread Martin v. Löwis
Martin v. Löwis added the comment: Any standard way to add custom compilation flags?. See the README. Set OPT to influence the optimization flags; set EXTRA_CFLAGS otherwise. __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1453

[issue1455] VS2008, quick hack for distutils.msvccompiler

2007-11-17 Thread Martin v. Löwis
Martin v. Löwis added the comment: There is always the debate whether distutils might be repackaged and backported to older Python releases, therefore people hesitate to remove support for older versions. As for finding it in the registry: are you sure it has no registry settings anymore? I

[issue1455] VS2008, quick hack for distutils.msvccompiler

2007-11-17 Thread Martin v. Löwis
Martin v. Löwis added the comment: As another note: you shouldn't remove support code for Itanium. Even though no Itanium binaries will be produced at the releases, I see no reason to rip the code out - people with Itanium machines should still be able to build Python, with some effort

[issue1455] VS2008, quick hack for distutils.msvccompiler

2007-11-17 Thread Martin v. Löwis
Martin v. Löwis added the comment: Ok. Running vsvars is fine, then. The change to get_build_architecture is broken in another way: as it parses the architecture out of sys.version, you still get Intel, not x86 (unless you also change PC/pyconfig.h - which may break code that relies

[issue1455] VS2008, quick hack for distutils.msvccompiler

2007-11-17 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- resolution: - accepted __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1455 __ ___ Python-bugs-list mailing list Unsubscribe: http

[issue1489051] keyword and topic help broken in Pythonwin IDE

2007-11-18 Thread Martin v. Löwis
Martin v. Löwis added the comment: The reason this is not part of the Windows installer is twofold: a) nobody ever thought of making it so, ever since the htmlhelp was added, and b) no code was contributed to add such a procedure to the Windows installer. Contributions are welcome, although I

[issue1337] Tools/msi/msi.py does not work with PCBuild8

2007-11-18 Thread Martin v. Löwis
Martin v. Löwis added the comment: kevinwatters: don't bother fixing msi.py. I'll update it whenever I make a release; there is little point in updating it in-between. -- assignee: - loewis nosy: +loewis __ Tracker [EMAIL PROTECTED] http

[issue1449] make msi work the vs 2005(MSVC8)

2007-11-18 Thread Martin v. Löwis
Martin v. Löwis added the comment: Did you test the change for VS 2003? In my MSMDir (C:\Programme\Gemeinsame Dateien\Merge Modules), I only have the following files GDIPlus.msm msmask32_X86.msm msmask32_X86_ENU.msm VB_Control_mschart_RTL_X86_---.msm VB_Control_mschart_RTL_X86_ENU.msm

[issue1354] windows installer problem

2007-11-18 Thread Martin v. Löwis
Martin v. Löwis added the comment: Closing because of lack of activity. -- resolution: - works for me status: open - closed __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1354

[issue1468] MSI installer does not include SSL test .pem files

2007-11-19 Thread Martin v. Löwis
Martin v. Löwis added the comment: Thanks for pointing that out. The MSI build needs to be taught to pick them up. If I seemingly don't find the time, feel free to contribute a patch. -- assignee: - loewis nosy: +loewis __ Tracker [EMAIL PROTECTED] http

[issue1468] MSI installer does not include SSL test .pem files

2007-11-19 Thread Martin v. Löwis
Martin v. Löwis added the comment: Thanks for the patch. It looked good, so I committed it as r59066. Let's see whether the buildbot picks it up correctly. __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1468

[issue1471] ioctl doesn't work properly on 64-bit OpenBSD

2007-11-19 Thread Martin v. Löwis
Martin v. Löwis added the comment: So what's the definition of struct winsize on these systems? Also, why do you think this is a bug in Python? AFAICT, the specific ioctl call does not occur in Python, but in your own code. -- nosy: +loewis resolution: - invalid status: open - pending

[issue1342] Crash on Windows if Python runs from a directory with umlauts

2007-11-19 Thread Martin v. Löwis
Martin v. Löwis added the comment: Please don't use the FileSystemEncoding on Windows for sys.path items. Instead, it should use the wide API to perform all system calls. Py3k shouldn't ever use the file system encoding for anything on Windows. __ Tracker [EMAIL

[issue1470] py3k unit tests are removing %TEMP% dir on Windows

2007-11-19 Thread Martin v. Löwis
Martin v. Löwis added the comment: It seems that this patch has broken a lot of buildbots, e.g. http://www.python.org/dev/buildbot/all/x86%20gentoo%20trunk/builds/2625/step-test/0 -- nosy: +loewis __ Tracker [EMAIL PROTECTED] http://bugs.python.org

[issue1472] Small bat files to build docs on Windows

2007-11-19 Thread Martin v. Löwis
Martin v. Löwis added the comment: See also Tools/buildbot/buildmsi.bat. With cygwin installed, building the documentation is as simple as bash.exe -c 'cd Doc;make PYTHON=python2.5 update htmlhelp' %ProgramFiles%\HTML Help Workshop\hhc.exe Doc\build\htmlhelp\pydoc.hhp -- nosy: +loewis

[issue1473] Drop _EXPORTS macros in PCbuild9

2007-11-19 Thread Martin v. Löwis
New submission from Martin v. Löwis: I believe it is safe to drop all the _EXPORTS macros (MMAP_EXPORTS, WINSOUND_EXPORRTS etc) from all projects; atleast I cannot see any reason for having them. Some are clearly bogus, e.g. unicodedata and test_capi both define MMAP_EXPORTS, _socket defines

[issue1473] Drop _EXPORTS macros in PCbuild9

2007-11-20 Thread Martin v. Löwis
Martin v. Löwis added the comment: See the MSDN for details. IIUC: - _WIN32 is defined by the compiler, always, unless the platform is WIN16 (which is no longer supported). It is even defined on Win64 (where the compiler also defines _WIN64). So there should be no need to defined it explicitly

[issue1455] VS2008, quick hack for distutils.msvccompiler

2007-11-20 Thread Martin v. Löwis
Martin v. Löwis added the comment: It's tedious to require users to invoke such a shell, and it would produce an endless flood of support requests if we made that a requirement. So requiring to build in such a shell is absolutely unacceptable. __ Tracker [EMAIL

[issue1476] missing debug configuration for make_versioninfo.vcproj

2007-11-20 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- assignee: - tiran __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1476 __ ___ Python-bugs-list mailing list Unsubscribe: http

[issue1490] Bug in eval() function

2007-11-23 Thread Martin v. Löwis
Martin v. Löwis added the comment: Why do you think this is a bug? 08 really is a syntax error, and 010 really means 8. -- nosy: +loewis resolution: - invalid status: open - closed __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1490

[issue1285] setp.py error The process cannot access the file ...

2007-11-24 Thread Martin v. Löwis
Martin v. Löwis added the comment: Can you provide a setup.py that allows to reproduce this error? __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1285 __ ___ Python-bugs-list

[issue1494] DOM-Documentation should mention that appendChild() removes the child it appends

2007-11-24 Thread Martin v. Löwis
New submission from Martin v. Löwis: Can you propose a specific wording? -- nosy: +loewis __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1494 __ ___ Python-bugs-list

[issue1494] DOM-Documentation should mention that appendChild() removes the child it appends

2007-11-24 Thread Martin v. Löwis
Martin v. Löwis added the comment: Thanks. I committed something like that as 59176. Notice that the precise semantics of all operations is specified in the DOM itself, http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/core.html which says Adds the node newChild to the end of the list

[issue1468] MSI installer does not include SSL test .pem files

2007-11-25 Thread Martin v. Löwis
Martin v. Löwis added the comment: I verified the installer; this problem is now fixed. -- resolution: - fixed status: open - closed __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1468

[issue1516] make _ctypes work with non-gcc compilers

2007-11-28 Thread Martin v. Löwis
Martin v. Löwis added the comment: Can you please be specific what compilers and systems you are talking about? I doubt your statements hold for *all* native UNIX compilers. In particular, .s files should be compiled with as, not cc, on the UNIX systems I'm familiar with, but that won't involve

[issue1514] missing constants in socket module

2007-11-30 Thread Martin v. Löwis
Martin v. Löwis added the comment: I disagree. h2py is much too unreliable, and should be phased out over time. __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1514 __ ___ Python

[issue1542] Ship 32 and 64bit libs with MSI installer

2007-12-02 Thread Martin v. Löwis
Martin v. Löwis added the comment: I don't mind adding the libs, although I think inclusion of the libs should be reconsidered, anyway. Why do we ship all of them, when you only ever need pythonxy.lib? If you are creating separate directories, please don't indicate the 64-bit ones as libs64

[issue1543] MSI installer needs to be updated to install x86 and x64 versions of Python on Vista 64 bit

2007-12-02 Thread Martin v. Löwis
Martin v. Löwis added the comment: It's not so clear that this is a bug. If you install both versions simultaneously, they might stomp on each other's registry settings, at least for the extensions. So this is rather a feature request. Notice that the behaviour is not new to Vista. Ever since

[issue1706039] Added clearerr() to clear EOF state

2007-12-03 Thread Martin v. Löwis
Martin v. Löwis added the comment: Yes, a number of items were not moved, as SF failed to provide them on export. -- nosy: +loewis _ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1706039

[issue1727780] 64/32-bit issue when unpickling random.Random

2007-12-03 Thread Martin v. Löwis
Martin v. Löwis added the comment: Thanks for the patch. Committed as r59295. Because of the version change, the patch cannot be applied to 2.5.x -- resolution: - accepted status: open - closed _ Tracker [EMAIL PROTECTED] http://bugs.python.org

[issue1722225] Build on QNX

2007-12-04 Thread Martin v. Löwis
Martin v. Löwis added the comment: I still don't get the point of including sys/termio.h. Python does *not* use the TCGETA macro itself *at all*. Python applications may, but they can't use the included sys/termio.h, since they are written in Python, not in C. To put the question the other way

[issue1706039] Added clearerr() to clear EOF state

2007-12-04 Thread Martin v. Löwis
Martin v. Löwis added the comment: jos, can you please provide a real name in Your Details of this tracker? We cannot accept anonymous/pseudonymous patches. _ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1706039

[issue1490190] add os.chflags() and os.lchflags() where available

2007-12-04 Thread Martin v. Löwis
Martin v. Löwis added the comment: Committed chflags.diff as r59317. -- status: open - closed _ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1490190 _ ___ Python

[issue1554] [patch] socketmodule cleanups: allow the use of keywords in socket functions

2007-12-04 Thread Martin v. Löwis
Martin v. Löwis added the comment: What problem(s) does this solve? -- nosy: +loewis __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1554 __ ___ Python-bugs-list mailing

[issue1554] [patch] socketmodule cleanups: allow the use of keywords in socket functions

2007-12-04 Thread Martin v. Löwis
Martin v. Löwis added the comment: And what problem is solved by the removal of ARGSUSED? For the functions whose signatures you changed, can you please add documentation and test changes as well (where necessary)? Please don't remove the arguments PyObject* on METHO_NOARGS functions

[issue1560] PATCH: Attribute lookup caching

2007-12-05 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- keywords: +patch __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1560 __ ___ Python-bugs-list mailing list Unsubscribe: http

<    1   2   3   4   5   6   7   8   9   10   >