[issue15649] subprocess.Popen.communicate: accept str for input parameter if universal_newlines is False

2012-08-14 Thread Andrew Svetlov
New submission from Andrew Svetlov: Currently Popen.communicate accept str is universal_newlines==True and bytes if universal_newlines==False. I like to accept both str and bytes if universal_newlines is False and raise explicit exception for bytes if universal_newlines is True. Looks like

[issue15649] subprocess.Popen.communicate: accept str for input parameter if universal_newlines is False

2012-08-14 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- components: +Library (Lib) ___ Python tracker <http://bugs.python.org/issue15649> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15592] subprocess.communicate() breaks on no input with universal newlines true

2012-08-14 Thread Andrew Svetlov
Andrew Svetlov added the comment: Close the issue. Thanks, Chris. It was the real regression, 3.2 works fine. See also #15649 for accepting str if not universal_newlines. -- ___ Python tracker <http://bugs.python.org/issue15

[issue15204] Deprecate the 'U' open mode

2012-08-14 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue15204> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue14649] doctest.DocTestSuite error misleading when module has no docstrings

2012-08-14 Thread Andrew Svetlov
Andrew Svetlov added the comment: I think current behavior is correct. Every doctest is docstring from tested module, but not every docstring is a valid doctest. -- ___ Python tracker <http://bugs.python.org/issue14

[issue15390] PEP 3121, 384 refactoring applied to datetime module

2012-08-14 Thread Andrew Svetlov
Andrew Svetlov added the comment: Add Alexander Belopolsky to nosy list as maintainer of datetime module. -- nosy: +belopolsky ___ Python tracker <http://bugs.python.org/issue15

[issue15543] central documentation for 'universal newlines'

2012-08-15 Thread Andrew Svetlov
Andrew Svetlov added the comment: Good work. -- ___ Python tracker <http://bugs.python.org/issue15543> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15543] central documentation for 'universal newlines'

2012-08-15 Thread Andrew Svetlov
Andrew Svetlov added the comment: Yes, it is processed correctly. -- ___ Python tracker <http://bugs.python.org/issue15543> ___ ___ Python-bugs-list mailin

[issue12623] "universal newlines" subprocess support broken with select- and poll-based communicate()

2012-08-15 Thread Andrew Svetlov
Andrew Svetlov added the comment: Antoine, can you explain why subprocess support for universal_newlines is broken? As I can see tests for universal_newlines passed and these looks correct. In general I like your idea to get rid of os.write, but maybe that patch should be landed in 3.4? If

[issue11062] mailbox fails to round-trip a file to a Babyl mailbox

2012-08-15 Thread Andrew Svetlov
Andrew Svetlov added the comment: Reopen the issue because Windows tests is failed. Commits for this issue breaks Windows buildbot for 3.2 and 3.3. Looks like problem is: Windows os.linesep different than Unix. I don't know what format expected by protocol. -- nosy: +asvetlov s

[issue12623] "universal newlines" subprocess support broken with select- and poll-based communicate()

2012-08-15 Thread Andrew Svetlov
Andrew Svetlov added the comment: I've pushed test for piping stdin, stdout and and stderr: 4af2c0687970 What other test we should to add? -- ___ Python tracker <http://bugs.python.org/is

[issue12623] "universal newlines" subprocess support broken with select- and poll-based communicate()

2012-08-15 Thread Andrew Svetlov
Andrew Svetlov added the comment: Оор. I see. Pushing to communicate input with "\r" (see attached patch) produces the error. Will work on fixing. Thanks. -- keywords: +patch Added file: http://bugs.python.org/file26837/issue12623_failing

[issue12623] "universal newlines" subprocess support broken with select- and poll-based communicate()

2012-08-15 Thread Andrew Svetlov
Andrew Svetlov added the comment: I like to set status for the issue to "Release blocker" if Georg Brandl agree with that. -- nosy: +georg.brandl priority: normal -> release blocker ___ Python tracker <http://bugs.pytho

[issue12623] "universal newlines" subprocess support broken with select- and poll-based communicate()

2012-08-15 Thread Andrew Svetlov
Andrew Svetlov added the comment: The main question: can be fix applied to 3.3 or it can wait for 3.4? 3.2 has the same problem BTW. -- ___ Python tracker <http://bugs.python.org/issue12

[issue12623] "universal newlines" subprocess support broken with select- and poll-based communicate()

2012-08-15 Thread Andrew Svetlov
Andrew Svetlov added the comment: The real test should to put '\n' and subprocess should get '\r\n', right? Looking the code this test will fail on Windows. I cannot check it just now but looks like this is the problem. -- ___ P

[issue11062] mailbox fails to round-trip a file to a Babyl mailbox

2012-08-16 Thread Andrew Svetlov
Andrew Svetlov added the comment: Thank you, Petri. -- ___ Python tracker <http://bugs.python.org/issue11062> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue6696] Profile objects should be documented

2012-08-16 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue6696> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15627] Add a method to importlib.abc.SourceLoader for converting source to a code object

2012-08-17 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue15627> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15640] Document importlib.abc.Finder as deprecated

2012-08-17 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue15640> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15641] Clean up importlib for Python 3.4

2012-08-17 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue15641> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15642] Integrate pickle protocol version 4 GSoC work by Stefan Mihaila

2012-08-17 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue15642> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15645] 2to3 Grammar pickles not created when upgrading to 3.3.0b2

2012-08-17 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue15645> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15650] PEP 3121, 384 refactoring applied to dbm module

2012-08-17 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue15650> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15651] PEP 3121, 384 refactoring applied to elementtree module

2012-08-17 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue15651> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15653] PEP 3121, 384 refactoring applied to hashopenssl module

2012-08-17 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue15653> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15652] PEP 3121, 384 refactoring applied to gdbm module

2012-08-17 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue15652> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15654] PEP 384 Refactoring applied to bz2 module

2012-08-17 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue15654> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15655] PEP 384 Refactoring applied to json module

2012-08-17 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue15655> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15657] Error in Python 3 docs for PyMethodDef

2012-08-17 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue15657> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15662] PEP 3121 refactoring applied to locale module

2012-08-17 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue15662> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15665] PEP 3121, 384 refactoring applied to lsprof module

2012-08-17 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue15665> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15666] PEP 3121, 384 refactoring applied to lzma module

2012-08-17 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue15666> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15667] PEP 3121, 384 refactoring applied to pickle module

2012-08-17 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue15667> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15669] PEP 3121, 384 Refactoring applied to sre module

2012-08-17 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue15669> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15670] PEP 3121, 384 Refactoring applied to ssl module

2012-08-17 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue15670> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15671] PEP 3121, 384 Refactoring applied to struct module

2012-08-17 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue15671> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15672] PEP 3121, 384 Refactoring applied to testbuffer module

2012-08-17 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue15672> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15673] PEP 3121, 384 Refactoring applied to testcapi module

2012-08-17 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue15673> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15674] PEP 3121, 384 Refactoring applied to thread module

2012-08-17 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue15674> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15675] PEP 3121, 384 Refactoring applied to array module

2012-08-17 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue15675> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15657] Error in Python 3 docs for PyMethodDef

2012-08-17 Thread Andrew Svetlov
Andrew Svetlov added the comment: I think we can change PyCFunction_Call to accept METH_KEYWORDS as alias for METH_VARARGS | METH_KEYWORDS. It cannot make incompatibility with existing code base. -- ___ Python tracker <http://bugs.python.

[issue15595] subprocess.Popen(universal_newlines=True) does not work for certain locales

2012-08-19 Thread Andrew Svetlov
Andrew Svetlov added the comment: Looks good for me, but please use assertEqual instead assertEquals. -- ___ Python tracker <http://bugs.python.org/issue15

[issue15595] subprocess.Popen(universal_newlines=True) does not work for certain locales

2012-08-19 Thread Andrew Svetlov
Andrew Svetlov added the comment: Fixed. Thank you. -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.or

[issue12643] code.InteractiveConsole ignores sys.excepthook

2012-08-20 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue12643> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15731] Mechanism for inheriting docstrings and signatures

2012-08-20 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue15731> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15721] PEP 3121, 384 Refactoring applied to tkinter module

2012-08-20 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue15721> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue14649] doctest.DocTestSuite error misleading when module has no docstrings

2012-08-20 Thread Andrew Svetlov
Andrew Svetlov added the comment: Ok, I'm +0 for that. -- ___ Python tracker <http://bugs.python.org/issue14649> ___ ___ Python-bugs-list mailing list Unsubsc

[issue12643] code.InteractiveConsole ignores sys.excepthook

2012-08-20 Thread Andrew Svetlov
Andrew Svetlov added the comment: Is it finished or not? Also looks like patch applied to 3.3 while issue marked for 2.7 and 3.2 also. -- ___ Python tracker <http://bugs.python.org/issue12

[issue12643] code.InteractiveConsole ignores sys.excepthook

2012-08-20 Thread Andrew Svetlov
Andrew Svetlov added the comment: I'm ok with current status. Thanks for clarification. -- ___ Python tracker <http://bugs.python.org/issue12643> ___ ___

[issue6422] timeit called from within Python should allow autoranging

2012-08-21 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue6422> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue7741] Allow multiple statements in code.InteractiveConsole.push

2012-08-22 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue7741> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15776] Allow pyvenv to work in existing directory

2012-08-24 Thread Andrew Svetlov
Andrew Svetlov added the comment: Does it mean implicit implying --upgrade option if venv dir is '.'? -- nosy: +asvetlov ___ Python tracker <http://bugs.python.o

[issue15753] No-argument super in method with variable arguments raises SystemError

2012-08-24 Thread Andrew Svetlov
Andrew Svetlov added the comment: Changing exception type is not backward compatible and should be documented at least if that change is really required. Personally I slightly prefer to leave SystemError untouched -- nosy: +asvetlov ___ Python

[issue15751] Add PyGILState_SwitchInterpreter

2012-08-24 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue15751> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15776] Allow pyvenv to work in existing directory

2012-08-24 Thread Andrew Svetlov
Andrew Svetlov added the comment: I don't like current --clear behavior, it's really useless because now venv just deletes everything from virtual environment. You lose not only virtual env but files from your project also. virtualenv cleans only /Lib directory, that's much b

[issue15776] Allow pyvenv to work in existing directory

2012-08-24 Thread Andrew Svetlov
Andrew Svetlov added the comment: Well, I see. Agree with your patch then, it is correct. -- ___ Python tracker <http://bugs.python.org/issue15776> ___ ___ Pytho

[issue15776] Allow pyvenv to work in existing directory

2012-08-24 Thread Andrew Svetlov
Andrew Svetlov added the comment: It is bug in shutil.rmtree, right? -- ___ Python tracker <http://bugs.python.org/issue15776> ___ ___ Python-bugs-list mailin

[issue15776] Allow pyvenv to work in existing directory

2012-08-24 Thread Andrew Svetlov
Andrew Svetlov added the comment: Good point. I will prepare the patch to fix this. -- ___ Python tracker <http://bugs.python.org/issue15776> ___ ___ Python-bug

[issue12623] "universal newlines" subprocess support broken with select- and poll-based communicate()

2012-08-24 Thread Andrew Svetlov
Andrew Svetlov added the comment: I like to leave fixes to 3.4. Any change can produce side-effects, which can be nightmare for upcoming release candidate. Sure, Georg will share my opinion. Though absence '\n' -> '\r\n' for input if OS is Windows and universal_ne

[issue15776] Allow pyvenv to work in existing directory

2012-08-25 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- priority: release blocker -> critical stage: -> needs patch ___ Python tracker <http://bugs.python.org/issue15776> ___ ___

[issue15809] IDLE console uses incorrect encoding.

2012-08-29 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- title: Строки из IDLE поступают в неверной кодировке. -> IDLE console uses incorrect encoding. ___ Python tracker <http://bugs.python.org/issu

[issue14803] Add feature to allow code execution prior to __main__ invocation

2012-08-29 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue14803> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15798] subprocess.Popen() fails if 0, 1 or 2 descriptor is closed

2012-08-30 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue15798> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15829] Threading Lock - Wrong Exception Name

2012-08-31 Thread Andrew Svetlov
Andrew Svetlov added the comment: The problem is: threading.Lock raises ThreadingError (which is subclass of RuntimeError for 3.3 but not for 3.2), but threading.Condition raises RuntimeError for the same reason. RLock behavior is even worse: it raises ThreadingError if C accelerator is

[issue13992] Segfault in PyTrash_destroy_chain

2012-08-31 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue13992> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15819] Unable to build Python out-of-tree when source tree is readonly.

2012-08-31 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- stage: committed/rejected -> ___ Python tracker <http://bugs.python.org/issue15819> ___ ___ Python-bugs-list mailing list Un

[issue15829] Threading Lock - Wrong Exception Name

2012-08-31 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- Removed message: http://bugs.python.org/msg169518 ___ Python tracker <http://bugs.python.org/issue15829> ___ ___ Python-bugs-list m

[issue15829] Threading Lock - Wrong Exception Name

2012-08-31 Thread Andrew Svetlov
Andrew Svetlov added the comment: ValueError can be referenced by :exc:`ValueError`. For ThreadError you can add section for describing this exception type like: .. exception:: ThreadError Raised when lock object cannot be acquired or released

[issue15825] Typo in OrderedDict docs

2012-08-31 Thread Andrew Svetlov
Andrew Svetlov added the comment: Thanks. -- nosy: +asvetlov resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.or

[issue15829] Threading Lock - Wrong Exception Name

2012-08-31 Thread Andrew Svetlov
Andrew Svetlov added the comment: Sounds good. -- ___ Python tracker <http://bugs.python.org/issue15829> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue14502] Document better what happens on releasing an unacquired lock

2012-08-31 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue14502> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15831] comma after leading optional argument is after bracket in docs

2012-08-31 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue15831> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15831] comma after leading optional argument is after bracket in docs

2012-08-31 Thread Andrew Svetlov
Andrew Svetlov added the comment: Yes, it looks like Sphinx problem. About having tho signatures for single function/method. Does Sphinx support it for *.. function::*? Pointing to anchor for first signature with adding second one somewhere in paragraph text doesn't look

[issue15831] comma after leading optional argument is after bracket in docs

2012-08-31 Thread Andrew Svetlov
Andrew Svetlov added the comment: No, methods for *curses* are also corrupted. -- ___ Python tracker <http://bugs.python.org/issue15831> ___ ___ Python-bugs-list m

[issue15840] Ambiguity with regard to the effect of accessing a closed IOBase instance

2012-09-02 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue15840> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15753] No-argument super in method with variable arguments raises SystemError

2012-09-02 Thread Andrew Svetlov
Andrew Svetlov added the comment: BTW see #15839: super now raises RuntimeError. After that I revoke my objection for exception type changing. -- ___ Python tracker <http://bugs.python.org/issue15

[issue15533] subprocess.Popen(cwd) documentation

2012-09-02 Thread Andrew Svetlov
Andrew Svetlov added the comment: Maybe better to check cwd in _call_popen_and_assert for child process (like test_cwd does) instead of just checking for successful child execution? -- ___ Python tracker <http://bugs.python.org/issue15

[issue15533] subprocess.Popen(cwd) documentation

2012-09-03 Thread Andrew Svetlov
Andrew Svetlov added the comment: Update patch. -- Added file: http://bugs.python.org/file27112/issue-15533-4-default.patch ___ Python tracker <http://bugs.python.org/issue15

[issue15533] subprocess.Popen(cwd) documentation

2012-09-04 Thread Andrew Svetlov
Andrew Svetlov added the comment: I believe it's trick for Tru64 platform. I've asked to support of this in python-dev. -- ___ Python tracker <http://bugs.python.o

[issue15863] Fine-grained info about Python versions which support changes introduced in micro releases

2012-09-06 Thread Andrew Svetlov
Andrew Svetlov added the comment: Hash randomization is security patch. It is applied to 2.6.8, 2.7.3, 3.2.3 and 3.3. Python doc should not enumerate all affected releases. For example, if you read docs for 2.6 branch it shows you 2.6.8 version only and that's ok. -- nosy: +asv

[issue15863] Fine-grained info about Python versions which support changes introduced in micro releases

2012-09-06 Thread Andrew Svetlov
Andrew Svetlov added the comment: Well, I can try to make patch. Please note: versionadded tag accepts only single version argument, you have to use couple of tags which looks weird. -- ___ Python tracker <http://bugs.python.org/issue15

[issue14900] cProfile does not take its result headers as sort arguments

2012-09-07 Thread Andrew Svetlov
Andrew Svetlov added the comment: I'll take a look next week if nobody else do it before. -- ___ Python tracker <http://bugs.python.org/issue14900> ___ ___

[issue15863] Fine-grained info about Python versions which support changes introduced in micro releases

2012-09-07 Thread Andrew Svetlov
Andrew Svetlov added the comment: Well, the patch is welcome. -- ___ Python tracker <http://bugs.python.org/issue15863> ___ ___ Python-bugs-list mailing list Unsub

[issue15871] Online docs: make index search always available.

2012-09-08 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue15871> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15956] backreference to named group does not work

2012-09-18 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue15956> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue13896] Make shelf instances work with 'with' as context managers

2012-09-26 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue13896> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue16072] fix documentation of string.replace() signature

2012-09-28 Thread Andrew Svetlov
Andrew Svetlov added the comment: No it shoudn't. It works exactly as described: Return a copy of string *str* with all occurrences of substring *old* replaced by *new*. If the optional argument *maxreplace* is given, the first *maxreplace* occurrences are replaced. *str* is updated strin

[issue16072] fix documentation of string.replace() signature

2012-09-28 Thread Andrew Svetlov
Andrew Svetlov added the comment: If you want just to change parameter name in the docs — I'm ok with that. -- ___ Python tracker <http://bugs.python.org/is

[issue16072] fix documentation of string.replace() signature

2012-09-28 Thread Andrew Svetlov
Andrew Svetlov added the comment: Fixed in c34a177d1f38 -- resolution: -> fixed stage: needs patch -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.or

[issue15533] subprocess.Popen(cwd) documentation

2012-09-29 Thread Andrew Svetlov
Andrew Svetlov added the comment: Chris, please commit your patch. It's fine for me. -- ___ Python tracker <http://bugs.python.org/issue15533> ___ ___ Pytho

[issue15417] Add support for csh and fish in venv activation scripts

2012-10-04 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- assignee: -> asvetlov resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python

[issue14446] Remove deprecated tkinter functions

2012-10-04 Thread Andrew Svetlov
Andrew Svetlov added the comment: Thanks to Michael Driscoll. BTW you have forgotten to remove C functions from module definition in your patch. -- resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python track

[issue14997] IDLE tries to run shell window if line is completed with F5 rather than Enter

2012-10-04 Thread Andrew Svetlov
Andrew Svetlov added the comment: Fixed. Thanks to Roger Serwy. -- nosy: +asvetlov resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.or

[issue16096] Get rid of dangerous integer overflow tricks

2012-10-04 Thread Andrew Svetlov
Andrew Svetlov added the comment: The patches looks good for me, but I like to double check before commit. Let's wait for a week for other reviewers. -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/is

[issue16138] In the glossary there is a small typo about __len__() in the sequence definition

2012-10-05 Thread Andrew Svetlov
Andrew Svetlov added the comment: Fixed. Thanks to py.user -- nosy: +asvetlov resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.or

[issue16140] subprocess.Popen the os.close calls in _execute_child can raise an EBADF exception

2012-10-05 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue16140> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue16116] Can not install C extension modules to inside a venv on Python 3.3.0 for Win32

2012-10-05 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue16116> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue16123] IDLE - deprecate running without a subprocess

2012-10-05 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue16123> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue16124] fcntl_ioctl still not 100% sane with unsigned longs

2012-10-05 Thread Andrew Svetlov
Andrew Svetlov added the comment: Is it affected for 3.3 and 3.4 also? -- nosy: +asvetlov versions: +Python 3.3, Python 3.4 ___ Python tracker <http://bugs.python.org/issue16

[issue16128] hashable documentation error

2012-10-05 Thread Andrew Svetlov
Andrew Svetlov added the comment: Please write what exact text you want to see in documentation. -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue16

<    15   16   17   18   19   20   21   22   23   24   >