[issue9784] _msi.c warnings under 64-bit Windows

2010-09-24 Thread Jon Anglin
Jon Anglin added the comment: Martin Lowis do you mean API when you type SDK? If I understand what you are saying, you would rather use the Win32 API instead of the CRT API? It may interest you to know that _open calls CreateFile internally, _read calls ReadFile, _write calls WriteFile, _l

[issue9934] Python Docs Typo

2010-09-24 Thread Brian Curtin
Brian Curtin added the comment: Fixed in r85002. This was taken care of on py3k a while ago. -- assignee: d...@python -> brian.curtin nosy: +brian.curtin resolution: -> fixed stage: needs patch -> committed/rejected status: open -> closed type: -> behavior versions: -Python 3.1, Pyth

[issue9910] Add Py_SetPath API for embeddint python

2010-09-24 Thread Kristján Valur Jónsson
Kristján Valur Jónsson added the comment: Right, forgot about getpath.c. Added documentation. See the latest version of the patch. Please note that I was unable to test the non-windows compile. -- Added file: http://bugs.python.org/file19003/py_setpath.patch ___

[issue9943] TypeError message became less helpful in Python 2.7

2010-09-24 Thread Benjamin Peterson
Benjamin Peterson added the comment: r85003 Thanks for the report. -- nosy: +benjamin.peterson resolution: -> fixed status: open -> closed ___ Python tracker ___ ___

[issue9910] Add Py_SetPath API for embedding python

2010-09-24 Thread Kristján Valur Jónsson
Changes by Kristján Valur Jónsson : -- title: Add Py_SetPath API for embeddint python -> Add Py_SetPath API for embedding python ___ Python tracker ___ __

[issue6608] asctime does not check its input

2010-09-24 Thread MunSic JEONG
Changes by MunSic JEONG : Removed file: http://bugs.python.org/file18976/issue6608-timemodule.patch ___ Python tracker ___ ___ Python-bugs-list

[issue6608] asctime does not check its input

2010-09-24 Thread MunSic JEONG
Changes by MunSic JEONG : Removed file: http://bugs.python.org/file18978/issue6608-testcase.patch ___ Python tracker ___ ___ Python-bugs-list m

[issue6608] asctime does not check its input

2010-09-24 Thread MunSic JEONG
Changes by MunSic JEONG : Removed file: http://bugs.python.org/file18987/issue6608-timemodule-2nd.patch ___ Python tracker ___ ___ Python-bugs-

[issue9943] TypeError message became less helpful in Python 2.7

2010-09-24 Thread Benjamin Peterson
Benjamin Peterson added the comment: Reverted, however. Let me clarify: you think the unhelpful part is that the count includes keyword arguments? This change was intentional, actually wrt to cases like this: >>> def f(a): ...pass >>> f(6, a=4, *(1, 2, 3)) Traceback (most

[issue6608] asctime does not check its input

2010-09-24 Thread MunSic JEONG
MunSic JEONG added the comment: I uploaded a patch against py3k branch. Sorry for many "Added file" and "Removed file" mails. I am learning customs Trac now. -- Added file: http://bugs.python.org/file19004/issue6608-p3k.patch ___ Python tracker

[issue9942] Allow memory sections to be OS MERGEABLE

2010-09-24 Thread Kevin Hunter
Kevin Hunter added the comment: My first thought is "Why is the reference counter stored with the object itself?" I imagine there are very good reasons, however, and this is not an area in which I have much mastery. Answering the question as best I can: I don't know how the reference counter

[issue9784] _msi.c warnings under 64-bit Windows

2010-09-24 Thread Martin v . Löwis
Martin v. Löwis added the comment: > Martin Lowis do you mean API when you type SDK? When I said "SDK examples", then I really meant "examples as published in the SDK", not "examples as published in the API" (and the SDK documentation, in turn, is published on msdn). But yes, the SDK examples u

<    1   2