[issue18882] Add threading.main_thread() function

2013-08-30 Thread Andrew Svetlov
Andrew Svetlov added the comment: There is updated patch. All tests pass. I've added docs for threading.main_thread() function also. -- Added file: http://bugs.python.org/file31530/issue18882-2.diff ___ Python tracker <http://bugs.py

[issue11798] Test cases not garbage collected after run

2013-08-31 Thread Andrew Svetlov
Andrew Svetlov added the comment: Good catch! That's because -R run the same test suite several times. I'm working on patch. -- resolution: fixed -> status: closed -> open ___ Python tracker <http://bugs.py

[issue11798] Test cases not garbage collected after run

2013-08-31 Thread Andrew Svetlov
Andrew Svetlov added the comment: Now 'regrtest.py -j4 -R : ' passes. Do we need to add parameter for disabling tests cleanup to TestSuite, TestLoader and TestProgrm constructors? -- ___ Python tracker <http://bugs.python.o

[issue18882] Add threading.main_thread() function

2013-08-31 Thread Andrew Svetlov
Andrew Svetlov added the comment: Uploaded new patch. > - the doc addition needs a "versionadded" tag Fixed. > - "The main thread is the thread that the OS creates to run application.": I > would rephrase this "In normal conditions, the main thread is t

[issue18750] '' % [1] doesn't fail

2013-09-01 Thread Andrew Svetlov
Andrew Svetlov added the comment: Ok. Close as won't fix. Please reopen if needed. -- resolution: -> wont fix status: open -> closed ___ Python tracker <http://bugs.python.

[issue11798] Test cases not garbage collected after run

2013-09-01 Thread Andrew Svetlov
Andrew Svetlov added the comment: Ok. Let's close issue. -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.

[issue18553] os.isatty() is not Unix only

2013-09-02 Thread Andrew Svetlov
Andrew Svetlov added the comment: Agree -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue18553> ___ ___ Python-bugs-list mailing list Unsub

[issue18912] Intendation issue in example code in itertools.count documentation

2013-09-03 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- stage: -> patch review ___ Python tracker <http://bugs.python.org/issue18912> ___ ___ Python-bugs-list mailing list Unsubscrib

[issue18882] Add threading.main_thread() function

2013-09-03 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.or

[issue18882] Add threading.main_thread() function

2013-09-04 Thread Andrew Svetlov
Andrew Svetlov added the comment: I did not received review email, sorry. Docstring is added. BTW 'threading' module has almost no docstrings, that's why I've added only docs at first. Do you think docstrings should be added to all publ

[issue18915] ssl.wrap_socket, pass in certfile and keyfile as PEM strings

2013-09-07 Thread Andrew Svetlov
Andrew Svetlov added the comment: This issue is duplicate for #16487 -- nosy: +asvetlov resolution: -> duplicate status: open -> closed superseder: -> Allow ssl certificates to be specified from memory rather than files. ___ Python track

[issue14624] Faster utf-16 decoder

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

[issue14625] Faster utf-32 decoder

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

[issue14579] Vulnerability in the utf-16 decoder after error handling

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

[issue14369] make __closure__ writable

2012-04-28 Thread Andrew Svetlov
Andrew Svetlov added the comment: sbt, looks good for me. -- ___ Python tracker <http://bugs.python.org/issue14369> ___ ___ Python-bugs-list mailing list Unsub

[issue14304] Implement utf-8-bmp codec

2012-04-28 Thread Andrew Svetlov
Andrew Svetlov added the comment: Serhiy, I like to fix tkinter itself, not only IDLE. There are other problems like idle is crashing if non-bmp char will be pasted from clipboard. Moreover, non-bmp behavior is different from one Tk widget to other. I still want to make codec for it and then

[issue9260] A finer grained import lock

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

[issue14777] Tkinter clipboard_get() decodes characters incorrectly

2012-05-13 Thread Andrew Svetlov
Andrew Svetlov added the comment: Patch looks good for me, works fine. I think it can be applied to 2.7 as well. There are only problem: I don't know how to make test for it without using external tools like xclip or ctypes bindings for X so li

[issue14799] Tkinter ttk tests hang on linux

2012-05-13 Thread Andrew Svetlov
New submission from Andrew Svetlov : By default python doesn't run full test suite, but regrtest accepts -u parameter. The simplest way to reproduce is: $ ./python -m test.regrtest -u gui test_ttk_guionly -- components: Tkinter messages: 160547 nosy: asvetlov priority: cri

[issue14777] Tkinter clipboard_get() decodes characters incorrectly

2012-05-13 Thread Andrew Svetlov
Andrew Svetlov added the comment: You are right: there are no tests as well as for the most part of tkinter. Why don't make it if possible? -- ___ Python tracker <http://bugs.python.org/is

[issue14777] Tkinter clipboard_get() decodes characters incorrectly

2012-05-15 Thread Andrew Svetlov
Andrew Svetlov added the comment: I'm ok with last patch version. -- ___ Python tracker <http://bugs.python.org/issue14777> ___ ___ Python-bugs-list m

[issue14446] Remove deprecated tkinter functions

2012-06-11 Thread Andrew Svetlov
Andrew Svetlov added the comment: Michael Driscoll, thank you for patch. Let's go on after Python 3.3 release — those patches should be applied for 3.4. For now we need to wait. -- ___ Python tracker <http://bugs.python.org/is

[issue15397] Unbinding of methods

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

[issue15397] Unbinding of methods

2012-07-19 Thread Andrew Svetlov
Andrew Svetlov added the comment: Can you push patch in form available for review via Rietveld? -- ___ Python tracker <http://bugs.python.org/issue15397> ___ ___

[issue15397] Unbinding of methods

2012-07-19 Thread Andrew Svetlov
Andrew Svetlov added the comment: Looks like PyCFunction_NewEx is part of Stable API. If I'm right you have to make stub for this one as simple trampoline to new PyCFunction_NewExEx implementation. Martin, please confirm. -- nosy: +l

[issue15397] Unbinding of methods

2012-07-20 Thread Andrew Svetlov
Andrew Svetlov added the comment: Stefan, you right. A bit hairy idiom from my perspective, but it works. Looks like this way used only for PyCFunction_New, all other code follows standard schema with trampoline. -- ___ Python tracker <h

[issue15404] Refleak in PyMethodObject repr

2012-07-20 Thread Andrew Svetlov
New submission from Andrew Svetlov : Python leaks in method.__repr__ if class has no __name__. Very rare situation. -- assignee: asvetlov components: Interpreter Core files: leak.diff keywords: patch messages: 165913 nosy: asvetlov priority: normal severity: normal status: open title

[issue15404] Refleak in PyMethodObject repr

2012-07-20 Thread Andrew Svetlov
Changes by Andrew Svetlov : Removed file: http://bugs.python.org/file26448/leak.diff ___ Python tracker <http://bugs.python.org/issue15404> ___ ___ Python-bugs-list mailin

[issue15404] Refleak in PyMethodObject repr

2012-07-20 Thread Andrew Svetlov
Changes by Andrew Svetlov : Added file: http://bugs.python.org/file26449/leak.diff ___ Python tracker <http://bugs.python.org/issue15404> ___ ___ Python-bugs-list mailin

[issue15404] Refleak in PyMethodObject repr

2012-07-20 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/issue15404> ___ ___ Python-bugs-list

[issue15404] Refleak in PyMethodObject repr

2012-07-20 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- stage: -> committed/rejected type: -> resource usage ___ Python tracker <http://bugs.python.org/issue15404> ___ ___ Pyth

[issue15363] Idle/tkinter ~x.py 'save as' fails. closes idle

2012-07-20 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- stage: needs patch -> patch review ___ Python tracker <http://bugs.python.org/issue15363> ___ ___ Python-bugs-list mai

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

2012-07-21 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- components: Library (Lib) nosy: asvetlov priority: normal severity: normal status: open title: Add support for csh and fish in venv activation scripts versions: Python 3.3 ___ Python tracker <http://bugs.python.

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

2012-07-21 Thread Andrew Svetlov
New submission from Andrew Svetlov : I have added required shell files -- keywords: +needs review, patch Added file: http://bugs.python.org/file26474/issue15417.diff ___ Python tracker <http://bugs.python.org/issue15

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

2012-07-21 Thread Andrew Svetlov
Andrew Svetlov added the comment: No idea if Doc/using/venv-create.inc should be updated to reflect support of new shells. virtualenv does nothing in own documentation btw. -- ___ Python tracker <http://bugs.python.org/issue15

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

2012-07-21 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +carljm, vinay.sajip ___ Python tracker <http://bugs.python.org/issue15417> ___ ___ Python-bugs-list mailing list Unsubscribe:

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

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

[issue5819] Add PYTHONPREFIXES environment variable

2012-07-22 Thread Andrew Svetlov
Andrew Svetlov added the comment: As PEP 405 has been implemented in Python 3.3 this issue can be closed I think. -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue5

[issue15094] Incorrectly placed #endif in _tkinter.c.

2012-07-22 Thread Andrew Svetlov
Andrew Svetlov added the comment: Fixed. Thanks, Serhiy! -- assignee: -> asvetlov nosy: +asvetlov resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python

[issue15402] Correct __sizeof__ support for struct

2012-07-22 Thread Andrew Svetlov
Andrew Svetlov added the comment: +1 for patch applying in 3.3 at least -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue15402> ___ ___ Pytho

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

2012-07-22 Thread Andrew Svetlov
Andrew Svetlov added the comment: Too late for 3.3 -- nosy: +asvetlov versions: +Python 3.4 -Python 3.3 ___ Python tracker <http://bugs.python.org/issue15

[issue15133] tkinter.BooleanVar.get() behavior and docstring disagree

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

[issue15041] tkinter documentation: update "see also" list

2012-07-22 Thread Andrew Svetlov
Andrew Svetlov added the comment: Add all recommended resources into seealso section. If it's ok I will commit it next week. -- keywords: +patch Added file: http://bugs.python.org/file26477/issue15041.diff ___ Python tracker

[issue15397] Unbinding of methods

2012-07-22 Thread Andrew Svetlov
Andrew Svetlov added the comment: Stefan, I've fixed refleak found by you in #15404. Thanks. -- ___ Python tracker <http://bugs.python.org/issue15397> ___ ___

[issue15422] Get rid of PyCFunction_New macro

2012-07-22 Thread Andrew Svetlov
New submission from Andrew Svetlov : For now (3.3 beta) PyCFunction_New defined as macro calling PyCFunction_NewEx. To be compatible with PEP 384 (Defining a Stable ABI) Objects/methodobject.c has trampoline function named PyCFunction_New which calls PyCFunction_NewEx. This is only single usage

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

2012-07-23 Thread Andrew Svetlov
Andrew Svetlov added the comment: 1. I agree with you about exclusion from 3.3. 2. Hmm. Good question. For now virtualenv has support for cmd.exe, csh, fish, bash/zsh and PowerShell. I propose to add csh and fish to venv too. If later somebody will push request for adding yet another shell

[issue15041] tkinter documentation: update "see also" list

2012-07-26 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- resolution: -> fixed stage: needs patch -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.or

[issue15041] tkinter documentation: update "see also" list

2012-07-27 Thread Andrew Svetlov
Andrew Svetlov added the comment: Ok -- ___ Python tracker <http://bugs.python.org/issue15041> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15411] os.chmod() does not follow symlinks on Windows

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

[issue12288] Python 2.7.1 tkSimpleDialog initialvalue

2012-07-29 Thread Andrew Svetlov
Andrew Svetlov added the comment: Add patch for py3k -- assignee: -> asvetlov keywords: +patch nosy: +asvetlov versions: +Python 3.2, Python 3.3 Added file: http://bugs.python.org/file26574/issue12288.diff ___ Python tracker <http://bugs.pyth

[issue12288] tkinter SimpleDialog initialvalue

2012-07-29 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- title: Python 2.7.1 tkSimpleDialog initialvalue -> tkinter SimpleDialog initialvalue ___ Python tracker <http://bugs.python.org/issu

[issue12288] tkinter SimpleDialog initialvalue

2012-07-30 Thread Andrew Svetlov
Andrew Svetlov added the comment: Fixed. Thank you, Tom. -- resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.or

[issue9803] IDLE closes with save while breakpoint open

2012-07-30 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- assignee: -> asvetlov nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue9803> ___ ___ Python-bugs-list mai

[issue9803] IDLE closes with save while breakpoint open

2012-07-31 Thread Andrew Svetlov
Andrew Svetlov added the comment: Thanks, Roger! -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.o

[issue13052] IDLE: replace ending with '\' causes crash

2012-08-04 Thread Andrew Svetlov
Andrew Svetlov added the comment: While there are no unittests for Roger's patch I have pushed it in after strong manual testing as important enough. Thanks, Roger. -- resolution: -> fixed stage: test needed -> committed/rejected status: ope

[issue15500] Python should support naming threads

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

[issue15501] Document exception classes in subprocess module

2012-08-07 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- stage: -> patch review ___ Python tracker <http://bugs.python.org/issue15501> ___ ___ Python-bugs-list mailing list Unsubscri

[issue15501] Document exception classes in subprocess module

2012-08-08 Thread Andrew Svetlov
Andrew Svetlov added the comment: Please update your patches: 1. use attribute:: 2. point base class for exception if it is not Exception 3. enumerate all attributes (`cmd` for CalledProcessError) Example: .. exception:: HTTPError Though being an exception (a subclass of :exc:`URLError

[issue15151] Documentation for Signature, Parameter and signature in inspect module

2012-08-08 Thread Andrew Svetlov
Andrew Svetlov added the comment: Yury, please updete your patch to pass doctest: ./python -m doctest Doc/library/inspect.html -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue15

[issue8800] add threading.RWLock

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

[issue15151] Documentation for Signature, Parameter and signature in inspect module

2012-08-09 Thread Andrew Svetlov
Andrew Svetlov added the comment: Update patch -- Added file: http://bugs.python.org/file26737/inspect.pep362.4.patch ___ Python tracker <http://bugs.python.org/issue15

[issue14966] Fully document subprocess.CalledProcessError

2012-08-09 Thread Andrew Svetlov
Andrew Svetlov added the comment: Documented in #15501. I like to close this issue as duplicate. If anybody don't agree with closing feel free to reopen this one. -- nosy: +asvetlov resolution: -> duplicate stage: -> committed/rejected status: ope

[issue15501] Document exception classes in subprocess module

2012-08-09 Thread Andrew Svetlov
Andrew Svetlov added the comment: Fixed. Thank you, Anton. -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed superseder: -> Fully document subprocess.CalledProcessError ___ Python tr

[issue15527] Double parens in functions references

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

[issue15557] Tests for webbrowser module

2012-08-09 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- dependencies: +A file is not properly closed by webbrowser._invoke, webbrowser.open sometimes passes zero-length argument to the browser. versions: +Python 3.4 -Python 3.3 ___ Python tracker <http://bugs.python.

[issue15561] update subprocess docs to reference io.TextIOWrapper

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

[issue15561] update subprocess docs to reference io.TextIOWrapper

2012-08-09 Thread Andrew Svetlov
Andrew Svetlov added the comment: Please do. -- ___ Python tracker <http://bugs.python.org/issue15561> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15527] Double parens in functions references

2012-08-09 Thread Andrew Svetlov
Andrew Svetlov added the comment: Fixed. Sorry, I forgot to mention issue number in commit messages. So it's 9c99f31a9c2a 96cc3ab243e5 and 1e8f6d8e5c0e commits. Thanks for report. -- resolution: -> fixed stage: -> committed/rejected status: ope

[issue15601] tkinter test_variables fails with OS X Aqua Tk 8.4

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

[issue15527] Double parens in functions references

2012-08-09 Thread Andrew Svetlov
Andrew Svetlov added the comment: Sorry, Georg. A'm apologizing. Actual commit numbers are: 6dab233a115e a979b005a814 4787b9b2f860 -- ___ Python tracker <http://bugs.python.org/is

[issue15527] Double parens in functions references

2012-08-09 Thread Andrew Svetlov
Andrew Svetlov added the comment: Thank you for reviewing every minor update. It's a big deal and heavy work! -- ___ Python tracker <http://bugs.python.org/is

[issue5819] Add PYTHONPREFIXES environment variable

2012-08-09 Thread Andrew Svetlov
Andrew Svetlov added the comment: Close issue as superseded by venv package. -- resolution: -> out of date stage: -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.o

[issue15527] Double parens in functions references

2012-08-09 Thread Andrew Svetlov
Andrew Svetlov added the comment: >From my perspective sphinx doesn't allow notations like >:c:func:`PyMem_Malloc(1)` Do you want to publish bugfix for sphinx? Sounds like good idea, but that fix is out my current competence. I just fixed weird stuff which you pointed out. If you

[issue15528] Better support for finalization with weakrefs

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

[issue15561] update subprocess docs to reference io.TextIOWrapper

2012-08-11 Thread Andrew Svetlov
Andrew Svetlov added the comment: Hmm. As I can see in subprocess.py TextIOWrapper is applied to stdin also in non-buffered (write_through=True) mode. So input will be converted to use '\n' as well. Can you reflect this fact in yo

[issue15527] Double parens in functions references

2012-08-11 Thread Andrew Svetlov
Andrew Svetlov added the comment: Applied patch uses ``expr(n)`` as Georg prefer. Serhiy, please close the issue if you have not any upcoming patches. Thanks. -- ___ Python tracker <http://bugs.python.org/issue15

[issue15151] Documentation for Signature, Parameter and signature in inspect module

2012-08-11 Thread Andrew Svetlov
Andrew Svetlov added the comment: Slightly updated version -- Added file: http://bugs.python.org/file26768/inspect.pep362.5.patch ___ Python tracker <http://bugs.python.org/issue15

[issue15628] Add import ABC hierarchy to docs for importlib

2012-08-11 Thread Andrew Svetlov
New submission from Andrew Svetlov: It would be useful to show import ABC hierarchy in the docs. See attached patch. -- files: import_abc.diff keywords: patch messages: 168017 nosy: asvetlov priority: normal severity: normal status: open title: Add import ABC hierarchy to docs for

[issue15628] Add import ABC hierarchy to docs for importlib

2012-08-11 Thread Andrew Svetlov
Andrew Svetlov added the comment: Brett, what do you think about? -- assignee: -> docs@python components: +Documentation keywords: +easy nosy: +brett.cannon, docs@python ___ Python tracker <http://bugs.python.org/issu

[issue15624] clarify io.TextIOWrapper newline documentation

2012-08-13 Thread Andrew Svetlov
Andrew Svetlov added the comment: For me input means «reading from» and output — «writing to». Nevertheless I'm ok with you suggestion. -- ___ Python tracker <http://bugs.python.org/is

[issue15624] clarify newline documentation for open and io.TextIOWrapper.

2012-08-13 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- title: clarify io.TextIOWrapper newline documentation -> clarify newline documentation for open and io.TextIOWrapper. ___ Python tracker <http://bugs.python.org/issu

[issue15624] clarify newline documentation for open and io.TextIOWrapper.

2012-08-13 Thread Andrew Svetlov
Andrew Svetlov added the comment: Close as fixed. Thanks. -- resolution: -> fixed stage: -> committed/rejected status: open -> closed versions: +Python 3.2, Python 3.3 ___ Python tracker <http://bugs.python.or

[issue15629] Run doctests in Doc/*.rst as part of regrtest

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

[issue15561] update subprocess docs to reference io.TextIOWrapper

2012-08-13 Thread Andrew Svetlov
Andrew Svetlov added the comment: Do you mean to mention stdin as well as stdout/stderr? It will be nice. -- ___ Python tracker <http://bugs.python.org/issue15

[issue15555] Default newlines of io.TextIOWrapper

2012-08-13 Thread Andrew Svetlov
Andrew Svetlov added the comment: It doesn't. _io can be fixed to directly support os.linesep, but I doubt if anybody really need it. -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/is

[issue15509] webbrowser.open sometimes passes zero-length argument to the browser.

2012-08-13 Thread Andrew Svetlov
Andrew Svetlov added the comment: Better to fix producer of empty lines than filter those ones. Keep in mind: there are several places there args list generated, probably you fix not all error sources. -- nosy: +asvetlov ___ Python tracker <h

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

2012-08-13 Thread Andrew Svetlov
Andrew Svetlov added the comment: _communicate_with_select has the same problem as _communicate_with_poll. I don't understand why input has encoded if universal_newlines and passed unchanged otherwise. >From my perspective input should be encoded (converted to bytes) if i

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

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

[issue15604] PyObject_IsTrue failure checks

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

[issue15557] Tests for webbrowser module

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

[issue15571] Python version of TextIOWrapper ignores "write_through" arg

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

[issue10224] Build 3.x documentation using python3.x

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

[issue15151] Documentation for Signature, Parameter and signature in inspect module

2012-08-13 Thread Andrew Svetlov
Andrew Svetlov added the comment: Closing the issue. Feel free to reopen if you have some corrections. -- ___ Python tracker <http://bugs.python.org/issue15

[issue15151] Documentation for Signature, Parameter and signature in inspect module

2012-08-13 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- resolution: -> fixed stage: -> committed/rejected status: open -> closed type: -> enhancement ___ Python tracker <http://bugs.python

[issue15151] Documentation for Signature, Parameter and signature in inspect module

2012-08-13 Thread Andrew Svetlov
Andrew Svetlov added the comment: Done in 843e0da7e91f -- ___ Python tracker <http://bugs.python.org/issue15151> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15561] update subprocess docs to reference io.TextIOWrapper

2012-08-13 Thread Andrew Svetlov
Andrew Svetlov added the comment: Fixed. BTW I prefer to use «stream» as alias to file object it subprocess context. «file» can clash with «the real file in filesystem» for documentation reader. -- resolution: -> fixed stage: patch review -> committed/rejected status: open -&g

[issue14167] document return statement in finally blocks

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

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

2012-08-13 Thread Andrew Svetlov
Andrew Svetlov added the comment: 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 universal_newlines for bytes doesn't make sense, also we prefer to use str everywhere. Bytes should be us

[issue15497] correct characters in TextWrapper.replace_whitespace docs

2012-08-13 Thread Andrew Svetlov
Andrew Svetlov added the comment: Done. Thanks, Chris. -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.or

[issue14167] document return statement in finally blocks

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

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