[issue16039] imaplib: unlimited readline() from connection

2013-09-15 Thread A.M. Kuchling
A.M. Kuchling added the comment: Updated version of the patch against 2.6 that adds a test. Thanks for the fix, Emil! -- nosy: +akuchling Added file: http://bugs.python.org/file31778/imaplib.txt ___ Python tracker <http://bugs.python.

[issue3849] FUD in documentation for urllib.urlopen()

2013-11-06 Thread A.M. Kuchling
Changes by A.M. Kuchling : -- keywords: -easy ___ Python tracker <http://bugs.python.org/issue3849> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue626452] Support RFC 2392 in email package

2013-11-06 Thread A.M. Kuchling
Changes by A.M. Kuchling : -- keywords: -easy ___ Python tracker <http://bugs.python.org/issue626452> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue634412] RFC 2387 in email package

2013-11-06 Thread A.M. Kuchling
Changes by A.M. Kuchling : -- keywords: -easy ___ Python tracker <http://bugs.python.org/issue634412> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue8799] Hang in lib/test/test_threading.py

2013-11-06 Thread A.M. Kuchling
Changes by A.M. Kuchling : -- keywords: -easy ___ Python tracker <http://bugs.python.org/issue8799> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue7839] Popen should raise ValueError if pass a string when shell=False or a list when shell=True

2013-11-06 Thread A.M. Kuchling
Changes by A.M. Kuchling : -- keywords: -easy ___ Python tracker <http://bugs.python.org/issue7839> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue11965] Simplify context manager in os.popen

2013-11-06 Thread A.M. Kuchling
A.M. Kuchling added the comment: Closing this issue; I agree with Ronald's assessment. -- nosy: +akuchling resolution: -> invalid status: open -> closed ___ Python tracker <http://bugs.python.

[issue1348] httplib closes socket, then tries to read from it

2013-11-06 Thread A.M. Kuchling
Changes by A.M. Kuchling : -- resolution: -> invalid status: pending -> closed ___ Python tracker <http://bugs.python.org/issue1348> ___ ___ Python-bugs-

[issue1671676] test_mailbox is hanging while doing gmake test on HP-UX v3

2013-11-06 Thread A.M. Kuchling
Changes by A.M. Kuchling : -- status: open -> languishing ___ Python tracker <http://bugs.python.org/issue1671676> ___ ___ Python-bugs-list mailing list Un

[issue7593] Computed-goto patch for RE engine

2013-11-06 Thread A.M. Kuchling
Changes by A.M. Kuchling : -- resolution: -> wont fix status: open -> closed ___ Python tracker <http://bugs.python.org/issue7593> ___ ___ Python-bugs-list

[issue834840] Unhelpful error message from cgi module

2013-11-06 Thread A.M. Kuchling
Changes by A.M. Kuchling : -- resolution: -> wont fix status: open -> closed ___ Python tracker <http://bugs.python.org/issue834840> ___ ___ Python-bugs-

[issue8003] Fragile and unexpected error-handling in asyncore

2013-11-06 Thread A.M. Kuchling
A.M. Kuchling added the comment: asyncore is no longer maintained, so this will not get fixed. -- nosy: +akuchling resolution: -> wont fix status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue7061] Improve turtle module documentation

2013-11-06 Thread A.M. Kuchling
A.M. Kuchling added the comment: Is there anything left to do for this issue? -- nosy: +akuchling ___ Python tracker <http://bugs.python.org/issue7061> ___ ___

[issue6868] Check errno of epoll_ctrl

2013-11-06 Thread A.M. Kuchling
A.M. Kuchling added the comment: I don't understand the bug being reported. The code you quote should probably be written as "if (result < 0 && errno == EBADF)", but the block's net effect is to ignore an error by resetting result and errno. It doesn't

[issue10552] Tools/unicode/gencodec.py error

2013-11-10 Thread A.M. Kuchling
A.M. Kuchling added the comment: For the Mac issue, we could just delete the mapping files before processing them. I've attached a patch that modifies the Makefile. -- nosy: +akuchling Added file: http://bugs.python.org/file32565/10552-remove-apple-file

[issue1097797] Encoding for Code Page 273 used by EBCDIC Germany Austria

2013-11-10 Thread A.M. Kuchling
A.M. Kuchling added the comment: Committed this to 3.4. -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue19544] Port distutils as found in Python 2.7 to Python 3.x.

2013-11-10 Thread A.M. Kuchling
A.M. Kuchling added the comment: I went through Python 2.7's Misc/NEWS file and collected the entries for Distutils-related issues that were applied. Perhaps we can check the individual entries on this list, and see which ones are still present in Python 3.x and which ones got rev

[issue19544] Port distutils as found in Python 2.7 to Python 3.x.

2013-11-10 Thread A.M. Kuchling
A.M. Kuchling added the comment: Issue #11104 also made some functionality work in both 2.7 and 3.2, though it's not clear that the problem stemmed from the distutils2 revert. -- ___ Python tracker <http://bugs.python.org/is

[issue1180] Option to ignore or substitute ~/.pydistutils.cfg

2013-11-10 Thread A.M. Kuchling
A.M. Kuchling added the comment: Here's a patch to restore the --no-user-cfg switch to 3.4. If someone will take a quick look at the patch for sanity, I can apply it. -- keywords: +needs review resolution: fixed -> stage: -> patch review versions: +Python 3.4 -Python 2.7,

[issue6516] reset owner/group to root for distutils tarballs

2013-11-10 Thread A.M. Kuchling
A.M. Kuchling added the comment: Here's an updated patch, to be applied against the default branch. -- nosy: +akuchling stage: -> patch review Added file: http://bugs.python.org/file32571/3.4-patch.txt ___ Python tracker <http://bugs

[issue19544] Port distutils as found in Python 2.7 to Python 3.x.

2013-11-10 Thread A.M. Kuchling
A.M. Kuchling added the comment: Patches for the default branch have been added to issue1180 (option to ignore ~/.pydistutils.cfg) and issue6516 (setting the owner/group in Distutils-built tarballs). Please double-check those patches; I can apply them

[issue6516] reset owner/group to root for distutils tarballs

2013-11-10 Thread A.M. Kuchling
Changes by A.M. Kuchling : -- versions: +Python 3.4 -Python 2.7, Python 3.2 ___ Python tracker <http://bugs.python.org/issue6516> ___ ___ Python-bugs-list mailin

[issue15858] tarfile missing entries due to omitted uid/gid fields

2013-11-11 Thread A.M. Kuchling
A.M. Kuchling added the comment: Here's the changes from patch.py, put into patch format. I took out the inlining for ntb() and support for different tarfile APIs, and also replaced the use of .split(,1)[0] by .partition(). -- nosy: +akuchling Added file: http://bugs.pytho

[issue16776] Document PyCFunction_New and PyCFunction_NewEx functions

2013-11-11 Thread A.M. Kuchling
A.M. Kuchling added the comment: Here's a patch that contains text for a description of these two functions. However, I can't figure out what section they would belong in. They don't really belong in http://docs.python.org/3.4/c-api/structures.html, which is for the C structu

[issue16776] Document PyCFunction_New and PyCFunction_NewEx functions

2013-11-11 Thread A.M. Kuchling
A.M. Kuchling added the comment: Mis-clicked and forgot to attach the patch. -- Added file: http://bugs.python.org/file32578/16776.txt ___ Python tracker <http://bugs.python.org/issue16

[issue8502] support plurals in pygettext

2013-11-11 Thread A.M. Kuchling
A.M. Kuchling added the comment: Here's an updated version of the documentation patch, that doesn't encourage using pygettext so much. It also updates Barry Warsaw's e-mail address and makes some other small edits. -- nosy: +akuchling Added file: http://bugs.pytho

[issue16042] smtplib: unlimited readline() from connection

2013-11-12 Thread A.M. Kuchling
A.M. Kuchling added the comment: Serhiy, your version of the patch for 2.7 looks fine. I've attached a version of the patch for 3.3. A change is needed to the MockFile object provided by Lib/test/mock_socket.py -- Added file: http://bugs.python.org/file32590/3.3-fi

[issue1500504] Alternate RFC 3986 compliant URI parsing module

2013-11-12 Thread A.M. Kuchling
A.M. Kuchling added the comment: Here's a slightly modified version of urischeme.py that can be run under Python 3 and compares its results with urllib.parse, printing out the mismatches. The major differences seem to be 1) urischeme fills in the default port if it's not explicitl

[issue1098749] Single-line option to pygettext.py

2013-11-19 Thread A.M. Kuchling
A.M. Kuchling added the comment: I've applied a patch from #8502 that doesn't encourage the use of pygettext.py so strongly. I raised the issue of deprecating pygettext.py on python-dev on Nov 11 2013; the thread starts at <https://mail.python.org/pipermail/python-dev/2013-No

[issue8502] support plurals in pygettext

2013-11-19 Thread A.M. Kuchling
A.M. Kuchling added the comment: Applied my documentation patch. New changeset 4fe87b5df2d0 by Andrew Kuchling in branch '3.3': #1098749: re-word gettext docs to not encourage using pygettext so much. http://hg.python.org/cpython/rev/4f

[issue1565525] tracebacks eat up memory by holding references to locals and globals when they are not wanted

2013-12-27 Thread A.M. Kuchling
Changes by A.M. Kuchling : -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue20610] Documentation with two slashes in URL links to v2.6.5c2

2014-02-15 Thread A.M. Kuchling
A.M. Kuchling added the comment: To clarify: http://www.python.org/doc//current/library/itertools.html returns the corresponding page from the 2.6.5c2 docs, while http://www.python.org/doc/current/library/itertools.html returns a 301 redirect to http://docs.python.org/library/itertools.html

[issue19363] Python 2.7's future_builtins.map is not compatible with Python 3's map

2014-02-15 Thread A.M. Kuchling
A.M. Kuchling added the comment: Gareth Rees: it doesn't look like you attached the patch mentioned in your 02/04 comment. -- nosy: +akuchling ___ Python tracker <http://bugs.python.org/is

[issue20237] Ambiguous sentence in document of xml package.

2014-02-15 Thread A.M. Kuchling
A.M. Kuchling added the comment: I applied Fran Bull's change; thanks for the patch! The vulnerabilities section had several grammar issues, so I made an editing pass over it and made various other changes in my commit. -- nosy: +akuchling stage: -> committed/rejected stat

[issue20487] Odd words in unittest.mock document.

2014-02-15 Thread A.M. Kuchling
A.M. Kuchling added the comment: Maybe this would be clearer if it used the keyword, i.e. "using the :attr:`~Mock.side_effect` attribute". Also, there's a typo in the quoted text: "two equality method" should be method'S&

[issue20497] Unclear word in socket document.

2014-02-15 Thread A.M. Kuchling
A.M. Kuchling added the comment: That line of documentation was introduced in changeset ca2a859e9bf6, which was issue #8866. Previously the parameters to getaddrinfo() were positional, so you had to supply all 5 of them. -- nosy: +akuchling

[issue16728] Missing cross-reference in sequence glossary entry

2014-02-15 Thread A.M. Kuchling
A.M. Kuchling added the comment: Here's a possible patch that mentions collections.abc.Sequence. I left out MutableSequence, because I couldn't see how to mention it without making the definition longer and more complicated. (It could be objected that this is the *glossar

[issue16728] Missing cross-reference in sequence glossary entry

2014-02-16 Thread A.M. Kuchling
Changes by A.M. Kuchling : -- stage: needs patch -> commit review ___ Python tracker <http://bugs.python.org/issue16728> ___ ___ Python-bugs-list mai

[issue12211] Better document math.copysign behavior.

2014-02-16 Thread A.M. Kuchling
A.M. Kuchling added the comment: Applied. I added two sentences describing the NaN behaviour. -- nosy: +akuchling resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker <http://bug

[issue12211] Better document math.copysign behavior.

2014-02-16 Thread A.M. Kuchling
A.M. Kuchling added the comment: OK; I'll just drop the 'If y is NaN' sentence. -- ___ Python tracker <http://bugs.python.org/issue12211> ___ ___

[issue12211] Better document math.copysign behavior.

2014-02-16 Thread A.M. Kuchling
A.M. Kuchling added the comment: Actually ISTM the 'if x is NaN' sentence can also go; it seems to just copy the sign bit no matter what x and y are. >>> from math import * >>> nan = float('nan') >>> neg =

[issue2636] Regexp 2.7 (modifications to current re 2.2.2)

2009-07-27 Thread A.M. Kuchling
A.M. Kuchling added the comment: We have lengthy sets of tests in Lib/test/regex_tests.py and Lib/test/test_re.py. While widespread testing of a standalone module would certainly be good, I doubt that will exercise many corner cases and the more esoteric features. Most actual code probably

[issue6243] getkey() can segfault in combination with curses.ungetch()

2009-09-25 Thread A.M. Kuchling
A.M. Kuchling added the comment: Thanks for the bug report and for the fix; committed to trunk in rev. 75066. I modified the patch slightly to declare the 'knp' variable in the 'else' block, and both the unctrl()/keyname() secti

[issue7593] Computed-goto patch

2009-12-28 Thread A.M. Kuchling
New submission from A.M. Kuchling : Part of Unladen Swallow's roadmap is to use a threaded-interpreter technique for the regular expression engine. That sounded like an interesting idea, so I went ahead and tried to implement it. The current patch is attached. To try it: run configure -

[issue7593] Computed-goto patch

2009-12-28 Thread A.M. Kuchling
Changes by A.M. Kuchling : Added file: http://bugs.python.org/file15690/re-computed-goto-v1.txt ___ Python tracker <http://bugs.python.org/issue7593> ___ ___ Python-bug

[issue7627] mailbox.MH.remove() lock handling is broken

2010-01-06 Thread A.M. Kuchling
Changes by A.M. Kuchling : -- assignee: -> akuchling nosy: +akuchling ___ Python tracker <http://bugs.python.org/issue7627> ___ ___ Python-bugs-list mai

[issue5368] curses patch add color_set and wcolor_set , and addchstr family of functions

2010-01-06 Thread A.M. Kuchling
Changes by A.M. Kuchling : -- assignee: georg.brandl -> akuchling ___ Python tracker <http://bugs.python.org/issue5368> ___ ___ Python-bugs-list mailing list Un

[issue2889] curses for windows (alternative patch)

2009-02-26 Thread A.M. Kuchling
Changes by A.M. Kuchling : -- nosy: +akuchling ___ Python tracker <http://bugs.python.org/issue2889> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue2889] curses for windows (alternative patch)

2009-02-26 Thread A.M. Kuchling
A.M. Kuchling added the comment: I can't say anything about the Windows build aspects. Some observations about the curses/test_curses changes: * test_curses: I'd be happier to see the 'if' statement as sys.platform != 'win32' and (not term or term ==

[issue5368] curses patch add color_set and wcolor_set functions

2009-02-26 Thread A.M. Kuchling
Changes by A.M. Kuchling : -- nosy: +akuchling ___ Python tracker <http://bugs.python.org/issue5368> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue4254] _cursesmodule.c callable update_lines_cols()

2009-02-26 Thread A.M. Kuchling
A.M. Kuchling added the comment: No documentation? Doc/library/curses.rst exists; there's also Doc/howto/curses.rst. What functions in _curses need to be documented? -- nosy: +akuchling ___ Python tracker <http://bugs.python.org/i

[issue4254] _cursesmodule.c callable update_lines_cols()

2009-02-26 Thread A.M. Kuchling
A.M. Kuchling added the comment: BTW, the code portion of the patch looks OK to me. ___ Python tracker <http://bugs.python.org/issue4254> ___ ___ Python-bugs-list mailin

[issue4753] Faster opcode dispatch on gcc

2009-03-30 Thread A.M. Kuchling
A.M. Kuchling added the comment: Is a backport to 2.7 still planned? -- nosy: +akuchling ___ Python tracker <http://bugs.python.org/issue4753> ___ ___ Python-bug

[issue2170] rewrite of minidom.Node.normalize

2009-04-07 Thread A.M. Kuchling
A.M. Kuchling added the comment: The new version of the code looks all right, so I think this patch can be applied. -- ___ Python tracker <http://bugs.python.org/issue2

[issue1607951] mailbox.Maildir re-reads directory too often

2009-05-02 Thread A.M. Kuchling
A.M. Kuchling added the comment: Updated version of the patch that only stores the current time -1sec, adds a test case, and passes all tests. -- keywords: +patch Added file: http://bugs.python.org/file13839/mailbox-mtime.patch ___ Python tracker

[issue1607951] mailbox.Maildir re-reads directory too often

2009-05-02 Thread A.M. Kuchling
A.M. Kuchling added the comment: Committed to trunk in rev. 72213. Committed to py3k in rev. 72228. -- resolution: -> fixed status: open -> closed versions: +Python 2.7 -Python 2.6 ___ Python tracker <http://bugs.python.org/iss

[issue8769] Straightforward usage of email package fails to round-trip

2010-05-19 Thread A.M. Kuchling
New submission from A.M. Kuchling : The attached test program shows how parsing an e-mail message with the email package, then converting the resulting message to a string, fails to round-trip properly. Instead it breaks the encoding of the subject line. The root of the problem: the subject

[issue8769] Straightforward usage of email package fails to round-trip

2010-05-19 Thread A.M. Kuchling
A.M. Kuchling added the comment: The attached patch is a possible fix; it uses the decode_header() and make_header() functions to figure out the encoding properly; it fixes my example, at least. But does it increase the odds of crashing on messages with malformed headers? Should it go into

[issue8769] Straightforward usage of email package fails to round-trip

2010-05-19 Thread A.M. Kuchling
A.M. Kuchling added the comment: Minor fix to the patch: the import of Header could actually be removed, since the class is no longer referenced at all with this change. -- ___ Python tracker <http://bugs.python.org/issue8

[issue8875] XML-RPC improvement is described twice.

2010-06-07 Thread A.M. Kuchling
A.M. Kuchling added the comment: Fixed in rev81801. Thanks for your report! -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue5753] CVE-2008-5983 python: untrusted python modules search path

2010-06-10 Thread A.M. Kuchling
A.M. Kuchling added the comment: Demo/embed/demo.c calls PySys_SetArgv(), which may be where some people are copying their code from. I've updated it to use PySys_SetArgvEx() and added an explanatory comment in rev. 81881. -- nosy: +akuc

[issue5753] CVE-2008-5983 python: untrusted python modules search path

2010-06-10 Thread A.M. Kuchling
A.M. Kuchling added the comment: Since the function was also added to 2.6, the 2.6 What's New should mention it; added in rev81887. -- ___ Python tracker <http://bugs.python.org/i

[issue9124] Mailbox module demonstrates infeasibly slow performance

2010-07-11 Thread A.M. Kuchling
Changes by A.M. Kuchling : -- nosy: +akuchling ___ Python tracker <http://bugs.python.org/issue9124> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1495229] W3C <-> Python DOM type mapping docs need updating

2010-07-25 Thread A.M. Kuchling
A.M. Kuchling added the comment: The current link in the docs works; it's http://www.omg.org/spec/PYTH/1.2/PDF/. -- ___ Python tracker <http://bugs.python.org/issu

[issue1495229] W3C <-> Python DOM type mapping docs need updating

2010-07-25 Thread A.M. Kuchling
A.M. Kuchling added the comment: Changed on the trunk in rev83149. I removed both paragraphs after the table, adding null and DOMString to the table, and took the word 'primitive' out of the first sentence (so the table isn't listing just primitive types, but can

[issue7637] Improve 19.5. xml.dom.minidom doc

2010-07-25 Thread A.M. Kuchling
A.M. Kuchling added the comment: 2) changed in rev83151. I extensively rearranged the description of toxml(), hopefully making its meaning clearer. -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.p

[issue1463043] test_minidom.py fails for Python-2.4.3 on SUSE 9.3

2010-07-25 Thread A.M. Kuchling
A.M. Kuchling added the comment: Closing. The replaceChild() bug reported by tobixx was fixed by patch #1094164. -- resolution: -> fixed status: pending -> closed ___ Python tracker <http://bugs.python.org/iss

[issue777884] minidom.py -- TypeError: object doesn't support slice assig

2010-07-25 Thread A.M. Kuchling
A.M. Kuchling added the comment: Well, we certainly can't going making any incompatible changes now, so I've opted to add an empty normalize() method to the Childless mix-in. This makes minidom a little more liberal than other DOM implementations, but I think that's OK. Com

[issue7637] Improve 19.5. xml.dom.minidom doc

2010-07-26 Thread A.M. Kuchling
A.M. Kuchling added the comment: Thanks for the catch; it was intended to be ', avoiding ...'. Fixed in rev83162, along with the sentence simplification you suggest. -- ___ Python tracker <http://bugs.python.

[issue1886] Permit to easily use distutils "--formats=tar, gztar, bztar" on all systems

2010-07-26 Thread A.M. Kuchling
Changes by A.M. Kuchling : -- assignee: akuchling -> ___ Python tracker <http://bugs.python.org/issue1886> ___ ___ Python-bugs-list mailing list Unsubscri

[issue18779] Misleading documentations and comments in regular expression HOWTO

2017-02-14 Thread A.M. Kuchling
A.M. Kuchling added the comment: Unfortunately making the sentences pedantically correct also makes them ungainly, and I think people generally assume that underscores are treated as a letter. -- nosy: +akuchling resolution: -> wont fix stage: patch review -> resolved status

[issue23109] French quotes in the documentation are often ungrammatical

2017-02-15 Thread A.M. Kuchling
A.M. Kuchling added the comment: It looks like there's nothing left to do for this ticket. -- nosy: +akuchling resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker <http://bugs.pyth

[issue16754] Incorrect shared library extension on linux

2013-04-02 Thread A.M. Kuchling
A.M. Kuchling added the comment: I just tried building trunk on MacOS 10.6.8, and make install fails with this traceback: Traceback (most recent call last): File "./setup.py", line 2175, in main() File "./setup.py", line 2170, in main "Tools/scripts/2to

[issue17700] Update Curses HOWTO for 3.4

2013-04-11 Thread A.M. Kuchling
New submission from A.M. Kuchling: Here's a patch updating the Curses HOWTO for 3.4 that can be applied to the default branch. Changes: * curses.wrapper.wrapper is now just curses.wrapper * Mention window.encoding and its effect on Unicode. * Describe getkey() as well as getch() * Im

[issue17700] Update Curses HOWTO for 3.4

2013-04-12 Thread A.M. Kuchling
A.M. Kuchling added the comment: Updated version of the patch: * Correct the errors reported in the review. * Restore 3-space indents. * Mention the LINES and COLS variables. * Add more links to the final section. I believe everything in the howto also applies to 3.3; it would be fine if you

[issue17686] Doc using/unix broken link (http://linuxmafia.com/)

2013-04-12 Thread A.M. Kuchling
A.M. Kuchling added the comment: Perhaps http://en.opensuse.org/Portal:Packaging is a good replacement. -- nosy: +akuchling ___ Python tracker <http://bugs.python.org/issue17

[issue17729] advocacy howto improvements

2013-04-22 Thread A.M. Kuchling
A.M. Kuchling added the comment: I suggest just dropping this HOWTO. It was written to contrast using Python with using only a low-level language such as C. Today there may still be some people arguing over whether to use a low-level or high-level language, but I think the idea of using

[issue17700] Update Curses HOWTO for 3.4

2013-04-29 Thread A.M. Kuchling
A.M. Kuchling added the comment: Updated version of the patch, applying many changes suggested by merwok: * use ~curses.funcname notation for links. * use 3-hyphen em-dash * minor fixes to various examples * rewrap long paragraphs (this makes the diff larger -- sorry!) -- Added file

[issue17700] Update Curses HOWTO for 3.4

2013-04-29 Thread A.M. Kuchling
A.M. Kuchling added the comment: Victor: I would like to add a section about using Unicode characters with curses, but found little material about doing that in either Python or the underlying C API. Do you have any suggested references or example code that I could look at? (It's pro

[issue17700] Update Curses HOWTO for 3.4

2013-05-09 Thread A.M. Kuchling
A.M. Kuchling added the comment: I've just verified that I still have commit access to the repo, so unless someone has any further suggested changes to the patch, I'll go ahead and commit it to trunk. Should I also commit it to the 3.3 branch? Victor: I'm willing to impr

[issue17700] Update Curses HOWTO for 3.4

2013-05-09 Thread A.M. Kuchling
A.M. Kuchling added the comment: Applied to 3.3 and 3.4. I'll leave this issue open for a week so that Victor can comment on Unicode/wide-characters. -- ___ Python tracker <http://bugs.python.org/is

[issue14878] Improve documentation for generator.send method

2013-05-09 Thread A.M. Kuchling
A.M. Kuchling added the comment: Thanks for the patch! -- nosy: +akuchling resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/i

[issue5901] missing meta-info in documentation pdf

2013-05-10 Thread A.M. Kuchling
A.M. Kuchling added the comment: This seems to be fixed now. I downloaded python-3.3.1-docs-pdf-letter.tar.bz2 and ran pdfinfo on using.pdf: Title: Python Setup and Usage Subject: Keywords: Author: Guido van Rossum, Fred L. Drake, Jr., editor Creator

[issue17955] Minor updates to Functional HOWTO

2013-05-11 Thread A.M. Kuchling
New submission from A.M. Kuchling: I read through the 3.x Functional HOWTO, and it only seems to require a few minor updates. The attached patch: * adds a forward link to skip the theoretical discussion in the first section. * remove stray extra comma * clarify what filterfalse() is the

[issue16024] Doc cleanup regarding path=fd, dir_fd, follow_symlinks, etc

2013-05-14 Thread A.M. Kuchling
A.M. Kuchling added the comment: Kaleb Robertson's changes look good. Larry, do you want to go ahead and commit this? -- ___ Python tracker <http://bugs.python.org/is

[issue17955] Minor updates to Functional HOWTO

2013-05-14 Thread A.M. Kuchling
A.M. Kuchling added the comment: Updated version of the patch: * uses 'r' instead of 'N'. * removes the old outline and some notes at the end. * minor rewriting. -- Added file: http://bugs.python.org/file30257/functional.txt __

[issue17955] Minor updates to Functional HOWTO

2013-05-20 Thread A.M. Kuchling
Changes by A.M. Kuchling : -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/issue17955> ___ ___ Python-bugs-list

[issue17955] Minor updates to Functional HOWTO

2013-05-20 Thread A.M. Kuchling
Changes by A.M. Kuchling : -- stage: commit review -> committed/rejected ___ Python tracker <http://bugs.python.org/issue17955> ___ ___ Python-bugs-list mai

[issue1554133] PyOS_InputHook() and related API funcs. not documented

2013-05-24 Thread A.M. Kuchling
A.M. Kuchling added the comment: Here's a proposed patch to the c-api manual that describes these two pointers. I put them in the 'very high-level API' section. Maybe they belong in the Operating System Utilities section instead, but I think they're intertwined with the

[issue1554133] PyOS_InputHook() and related API funcs. not documented

2013-05-24 Thread A.M. Kuchling
A.M. Kuchling added the comment: One question about the patch: how to give the prototype expected for the function? I currently have it as: char *(*PyOS_ReadlineFunctionPointer)(FILE *stdin, FILE *stdout, char *prompt) Would it be better with a trivial function name, as in: char *func(FILE

[issue18648] FP Howto and the PEP 8 lambda guildline

2014-12-31 Thread A.M. Kuchling
A.M. Kuchling added the comment: This section is trying to illustrate the reasoning that leads to PEP 8's conclusion, so I don't want to just replace it with a reference to PEP8. -- resolution: -> wont fix status: open -> closed __

[issue18779] Misleading documentations and comments in regular expression HOWTO

2014-12-31 Thread A.M. Kuchling
Changes by A.M. Kuchling : -- nosy: -akuchling ___ Python tracker <http://bugs.python.org/issue18779> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1671676] test_mailbox is hanging while doing gmake test on HP-UX v3

2014-12-31 Thread A.M. Kuchling
Changes by A.M. Kuchling : -- resolution: -> wont fix status: languishing -> closed ___ Python tracker <http://bugs.python.org/issue1671676> ___ ___ Pyth

[issue3786] _curses, _curses_panel & _multiprocessing can't be build in 2.6b3 w/ SunStudio 12

2014-12-31 Thread A.M. Kuchling
Changes by A.M. Kuchling : -- nosy: -akuchling ___ Python tracker <http://bugs.python.org/issue3786> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue433030] SRE: Atomic Grouping (?>...) is not supported

2014-12-31 Thread A.M. Kuchling
Changes by A.M. Kuchling : -- nosy: -akuchling ___ Python tracker <http://bugs.python.org/issue433030> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue9584] fnmatch, glob: Allow curly brace expansion

2014-12-31 Thread A.M. Kuchling
Changes by A.M. Kuchling : -- nosy: -akuchling ___ Python tracker <http://bugs.python.org/issue9584> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue10590] Parameter type error for xml.sax.parseString(string, ...)

2014-12-31 Thread A.M. Kuchling
Changes by A.M. Kuchling : -- nosy: -akuchling ___ Python tracker <http://bugs.python.org/issue10590> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue3367] Uninitialized value read in parsetok.c

2014-12-31 Thread A.M. Kuchling
Changes by A.M. Kuchling : -- nosy: -akuchling ___ Python tracker <http://bugs.python.org/issue3367> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1467929] %-formatting and dicts

2014-12-31 Thread A.M. Kuchling
Changes by A.M. Kuchling : -- nosy: -akuchling ___ Python tracker <http://bugs.python.org/issue1467929> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue2202] urllib2 fails against IIS 6.0 (No support for MD5-sess auth)

2014-12-31 Thread A.M. Kuchling
Changes by A.M. Kuchling : -- nosy: -akuchling ___ Python tracker <http://bugs.python.org/issue2202> ___ ___ Python-bugs-list mailing list Unsubscribe:

<    1   2   3   4   5   6   >