[issue16706] Get rid of os.error. Use OSError instead

2012-12-18 Thread Andrew Svetlov
Andrew Svetlov added the comment: I think deprecation makes not big value. We should continue aliases support and there are no place to raise warning. What we can do — mention deprecation in the doc. The reason to get rid of other OSError aliases to make cleaner code (especially considering

[issue16650] Popen._internal_poll() references errno.ECHILD outside of the local scope

2012-12-18 Thread Andrew Svetlov
Andrew Svetlov added the comment: As I can see in Py_Finalize finalized for standard exception classes is called after any python code has been finished, so we don't need to protect those exceptions. -- ___ Python tracker <http://bugs.py

[issue16711] s/next()/__next__/ in collections.abc.Iterator document.

2012-12-18 Thread Andrew Svetlov
Andrew Svetlov added the comment: Fixed. Thanks. -- nosy: +asvetlov resolution: -> fixed stage: -> committed/rejected status: open -> closed versions: +Python 3.2, Python 3.4 ___ Python tracker <http://bugs.python.or

[issue16714] Raise exceptions, don't throw

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

[issue16715] Get rid of IOrror. Use OSError instead

2012-12-18 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- assignee: asvetlov components: Library (Lib) nosy: asvetlov priority: normal severity: normal status: open title: Get rid of IOrror. Use OSError instead versions: Python 3.4 ___ Python tracker <http://bugs.python.

[issue16705] Use concrete classes inherited from OSError instead of errno check

2012-12-18 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- dependencies: +Get rid of IOrror. Use OSError instead, Get rid of os.error. Use OSError instead ___ Python tracker <http://bugs.python.org/issue16

[issue16716] Deprecate OSError aliases in the doc

2012-12-18 Thread Andrew Svetlov
New submission from Andrew Svetlov: The list of aliases is: IOError, EnvironmentError, WindowsError, mmap.error, socket.error, os.error and select.error Documentation should have deprecation message guessing to use OSError instead. -- messages: 177704 nosy: asvetlov priority: normal

[issue16706] Get rid of os.error. Use OSError instead

2012-12-18 Thread Andrew Svetlov
Andrew Svetlov added the comment: Fixed. About deprecation: I've created #16716 for that. -- ___ Python tracker <http://bugs.python.org/issue16706> ___ ___

[issue16706] Get rid of os.error. Use OSError instead

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

[issue16705] Use concrete classes inherited from OSError instead of errno check

2012-12-18 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- dependencies: +Deprecate OSError aliases in the doc ___ Python tracker <http://bugs.python.org/issue16705> ___ ___ Python-bug

[issue16717] Get rid of socket.error. Use OSError instead

2012-12-18 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- assignee: asvetlov components: Documentation nosy: asvetlov priority: normal severity: normal status: open title: Get rid of socket.error. Use OSError instead versions: Python 3.4 ___ Python tracker <h

[issue16705] Use concrete classes inherited from OSError instead of errno check

2012-12-18 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- dependencies: +Get rid of socket.error. Use OSError instead ___ Python tracker <http://bugs.python.org/issue16705> ___ ___ Pytho

[issue16716] Deprecate OSError aliases in the doc

2012-12-18 Thread Andrew Svetlov
Andrew Svetlov added the comment: Don't know about library/exceptions.rst For other modules (socket, select etc.) I like to use ".. deprecated:: 3.3" markup. Antoine, do you have objections? -- ___ Python tracker <http://bugs.pyt

[issue16717] Get rid of socket.error. Use OSError instead

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

[issue16719] Get rid of WindowsError. Use OSError instead

2012-12-19 Thread Andrew Svetlov
Andrew Svetlov added the comment: Sorry, Brian. I missed that you assign issue to yourself. Committed patch contributed by Serhiy. Close the issue. Feel free to reopen if needed. -- resolution: -> fixed status: open -> closed ___ Python t

[issue16724] Rename `data` argument names to `bytes`

2012-12-19 Thread Andrew Svetlov
Andrew Svetlov added the comment: I agree: the docs is good and don't needed to be modified. -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/is

[issue16714] Raise exceptions, don't throw

2012-12-19 Thread Andrew Svetlov
Andrew Svetlov added the comment: Committed. Thanks again, Serhiy! -- ___ Python tracker <http://bugs.python.org/issue16714> ___ ___ Python-bugs-list mailin

[issue14373] C implementation of functools.lru_cache

2012-12-19 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +amaury.forgeotdarc, pitrou ___ Python tracker <http://bugs.python.org/issue14373> ___ ___ Python-bugs-list mailing list Unsub

[issue16722] __index__() overrides __bytes__() when bytes() is called

2012-12-19 Thread Andrew Svetlov
Andrew Svetlov added the comment: Is it coupled with #15559? If true we can relax ipaddress with adding __index__ again for 3.4 -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue16

[issue16722] __index__() overrides __bytes__() when bytes() is called

2012-12-19 Thread Andrew Svetlov
Andrew Svetlov added the comment: BTW, Руслан, can you change your name to use latin alphabet? I'm Андрей Светлов, but use Andrew Svetlov for tracker. Latin transcription is much easier to remember for all python users who don't speak Russian. For that guys your name looks like Chine

[issue13178] Need tests for Unicode handling in install_distinfo and install_data

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

[issue16045] add more unit tests for built-in int()

2012-12-23 Thread Andrew Svetlov
Andrew Svetlov added the comment: Committed. Thanks. -- ___ Python tracker <http://bugs.python.org/issue16045> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue16045] add more unit tests for built-in int()

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

[issue9856] Change object.__format__(s) where s is non-empty to a TypeError

2012-12-23 Thread Andrew Svetlov
Andrew Svetlov added the comment: Committed. Thanks. -- resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.o

[issue9856] Change object.__format__(s) where s is non-empty to a TypeError

2012-12-23 Thread Andrew Svetlov
Andrew Svetlov added the comment: Updated NEWS and docs -- ___ Python tracker <http://bugs.python.org/issue9856> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue879399] socket line buffering

2012-12-23 Thread Andrew Svetlov
Andrew Svetlov added the comment: LGTM. Kristján, would you like to commit? -- ___ Python tracker <http://bugs.python.org/issue879399> ___ ___ Python-bugs-list m

[issue9856] Change object.__format__(s) where s is non-empty to a TypeError

2012-12-23 Thread Andrew Svetlov
Andrew Svetlov added the comment: Ok -- ___ Python tracker <http://bugs.python.org/issue9856> ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue16443] Add docstrings to regular expression match objects

2012-12-23 Thread Andrew Svetlov
Andrew Svetlov added the comment: Pushed. Thank you, Anton! -- resolution: -> fixed stage: needs patch -> committed/rejected status: open -> closed versions: +Python 2.7 ___ Python tracker <http://bugs.python.or

[issue15302] Use argparse instead of getopt in test.regrtest

2012-12-23 Thread Andrew Svetlov
Andrew Svetlov added the comment: Hi Chris. Today we had python sprint and I've guessed to Anton to refactor the patch in good way with properly setting default values from regrtest.main to argparse args. Then use proper argparse actions for manipulating that args. After all we ca

[issue14715] test.support.DirsOnSysPath should be replaced by importlib.test.util.import_state

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

[issue879399] socket line buffering

2012-12-24 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- assignee: -> kristjan.jonsson ___ Python tracker <http://bugs.python.org/issue879399> ___ ___ Python-bugs-list mailing list Un

[issue13582] IDLE and pythonw.exe stderr problem

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

[issue16511] IDLE configuration file: blank height and width fields trip up IDLE

2012-12-24 Thread Andrew Svetlov
Andrew Svetlov added the comment: Fixed. Trung, I think installation procedure is not subject of this issue. If needed please create new one. -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed _

[issue16511] IDLE configuration file: blank height and width fields trip up IDLE

2012-12-24 Thread Andrew Svetlov
Andrew Svetlov added the comment: Ok. Agree with you. -- ___ Python tracker <http://bugs.python.org/issue16511> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15302] Use argparse instead of getopt in test.regrtest

2012-12-24 Thread Andrew Svetlov
Andrew Svetlov added the comment: Well. Do you like to apply Chris patch and wait for next step appear? On Mon, Dec 24, 2012 at 2:33 AM, R. David Murray wrote: > > R. David Murray added the comment: > > I am -1 on doing this as one big refactoring, unless tests are written for

[issue16637] py-bt, py-locals, etc. GDB commands fail with output-radix 16

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

[issue16672] improve tracing performances when f_trace is NULL

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

[issue812369] module shutdown procedure based on GC

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

[issue14470] Remove using of w9xopen in subprocess module

2012-12-24 Thread Andrew Svetlov
Andrew Svetlov added the comment: Thanks On Mon, Dec 24, 2012 at 6:44 PM, Roundup Robot wrote: > > Roundup Robot added the comment: > > New changeset deee9f0a4b98 by Brian Curtin in branch 'default': > Fix #14470. Remove mentions of w9xpopen on old versions

[issue16769] Remove some old Visual Studio versions from PC/ directory

2012-12-24 Thread Andrew Svetlov
Andrew Svetlov added the comment: Do you want to keep VS9.0 only? Sounds good to me. -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue16

[issue16720] Get rid of os.error. Use OSError instead

2012-12-24 Thread Andrew Svetlov
Andrew Svetlov added the comment: Thanks! -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.or

[issue16650] Popen._internal_poll() references errno.ECHILD outside of the local scope

2012-12-24 Thread Andrew Svetlov
Andrew Svetlov added the comment: Close the issue. For future improvements (like ChildProcessError using) please open new one. -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python track

[issue16775] Add test coverage for os.removedirs()

2012-12-25 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- components: Library (Lib) keywords: easy nosy: asvetlov priority: normal severity: normal status: open title: Add test coverage for os.removedirs() versions: Python 3.2, Python 3.3, Python 3.4 ___ Python tracker <h

[issue16775] Add test coverage for os.removedirs()

2012-12-25 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- resolution: -> fixed stage: -> committed/rejected ___ Python tracker <http://bugs.python.org/issue16775> ___ ___ Pyth

[issue16775] Add test coverage for os.removedirs()

2012-12-25 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- status: open -> closed ___ Python tracker <http://bugs.python.org/issue16775> ___ ___ Python-bugs-list mailing list Unsubscri

[issue16644] Wrong code in ContextManagerTests.test_invalid_args() in test_subprocess.py

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

[issue16776] Document PyCFunction_New and PyCFunction_NewEx functions

2012-12-25 Thread Andrew Svetlov
New submission from Andrew Svetlov: c-api docs has no documentation for those public API functions. -- assignee: docs@python components: Documentation keywords: easy messages: 178115 nosy: asvetlov, docs@python priority: normal severity: normal status: open title: Document

[issue15422] Get rid of PyCFunction_New macro

2012-12-25 Thread Andrew Svetlov
Andrew Svetlov added the comment: #16776 created for documenting PyCFunction_New/PyCFunction_NewEx -- ___ Python tracker <http://bugs.python.org/issue15

[issue15422] Get rid of PyCFunction_New macro

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

[issue16218] Python launcher does not support unicode characters

2012-12-25 Thread Andrew Svetlov
Andrew Svetlov added the comment: Victor, are you done all work for the issue? Can it be closed? -- ___ Python tracker <http://bugs.python.org/issue16218> ___ ___

[issue879399] socket line buffering

2012-12-25 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- stage: patch review -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.org/issue879399> ___ __

[issue16715] Get rid of IOError. Use OSError instead

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

[issue15422] Get rid of PyCFunction_New macro

2012-12-25 Thread Andrew Svetlov
Andrew Svetlov added the comment: 1. Yes, you right. We use this idiom also for PyAST_CompileEx, PyErr_WarnEx and bunch of functions in ./Include/pythonrun.h 2. Patch is very simple and was available for review almost 3 months. I assumed that developers looked on this and had no objections

[issue16760] Get rid of MatchObject in regex HOWTO

2012-12-25 Thread Andrew Svetlov
Andrew Svetlov added the comment: We need to rename MatchObject to match object than (see #16443) -- ___ Python tracker <http://bugs.python.org/issue16

[issue16443] Add docstrings to regular expression match objects

2012-12-25 Thread Andrew Svetlov
Andrew Svetlov added the comment: Fixed in #16760 -- ___ Python tracker <http://bugs.python.org/issue16443> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue16760] Get rid of MatchObject in regex HOWTO

2012-12-25 Thread Andrew Svetlov
Andrew Svetlov added the comment: Done -- ___ Python tracker <http://bugs.python.org/issue16760> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15422] Get rid of PyCFunction_New macro

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

[issue14574] SocketServer doesn't handle client disconnects properly

2012-12-25 Thread Andrew Svetlov
Andrew Svetlov added the comment: Not clean to me: has python3 the same bug? -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue14574> ___ ___

[issue16218] Python launcher does not support unicode characters

2012-12-25 Thread Andrew Svetlov
Andrew Svetlov added the comment: I assign the issue to you than. Is it ok? -- assignee: asvetlov -> haypo ___ Python tracker <http://bugs.python.org/issu

[issue16785] Document the fact that constructing OSError with erron returns subclass if possible

2012-12-26 Thread Andrew Svetlov
New submission from Andrew Svetlov: I mean adding examples for constructions like this: >>> OSError(errno.ENOENT, 'error msg') FileNotFoundError(2, 'error msg') -- assignee: docs@python components: Documentation keywords: easy messages: 178204 nosy: a

[issue14574] SocketServer doesn't handle client disconnects properly

2012-12-26 Thread Andrew Svetlov
Andrew Svetlov added the comment: Everything is fine. Close the issue. -- stage: -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.org/i

[issue15302] Use argparse instead of getopt in test.regrtest

2012-12-26 Thread Andrew Svetlov
Andrew Svetlov added the comment: Anton, you are free to make that issue and propose a patch :) -- ___ Python tracker <http://bugs.python.org/issue15302> ___ ___

[issue15302] Use argparse instead of getopt in test.regrtest

2012-12-26 Thread Andrew Svetlov
Andrew Svetlov added the comment: New patch is LGTM. -- ___ Python tracker <http://bugs.python.org/issue15302> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15302] Use argparse instead of getopt in test.regrtest

2012-12-26 Thread Andrew Svetlov
Andrew Svetlov added the comment: Chris, would you commit it? -- ___ Python tracker <http://bugs.python.org/issue15302> ___ ___ Python-bugs-list mailing list Unsub

[issue15302] Use argparse instead of getopt in test.regrtest

2012-12-26 Thread Andrew Svetlov
Andrew Svetlov added the comment: Agree with both points -- ___ Python tracker <http://bugs.python.org/issue15302> ___ ___ Python-bugs-list mailing list Unsub

[issue13198] Remove duplicate definition of write_record_file

2012-12-26 Thread Andrew Svetlov
Andrew Svetlov added the comment: Close as out of date. Packaging has been removed from stdlib. -- nosy: +asvetlov resolution: -> out of date stage: patch review -> status: open -> closed ___ Python tracker <http://bugs.python.or

[issue12944] Accept arbitrary files for packaging's upload command

2012-12-26 Thread Andrew Svetlov
Andrew Svetlov added the comment: Close as out of date since packaging has been removed from stdlib. -- nosy: +asvetlov resolution: -> out of date status: open -> closed ___ Python tracker <http://bugs.python.org/i

[issue15422] Get rid of PyCFunction_New macro

2012-12-26 Thread Andrew Svetlov
Andrew Svetlov added the comment: Georg, I've followed your instructions. Close the issue again. Thanks for mentorship. -- resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker <http:

[issue16644] Wrong code in ContextManagerTests.test_invalid_args() in test_subprocess.py

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

[issue15302] Use argparse instead of getopt in test.regrtest

2012-12-28 Thread Andrew Svetlov
Andrew Svetlov added the comment: Good step! -- ___ Python tracker <http://bugs.python.org/issue15302> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue16799] switch regrtest from getopt options to argparse Namespace

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

[issue16758] SubprocessStartupError

2012-12-28 Thread Andrew Svetlov
Andrew Svetlov added the comment: I guess it is actually firewall. -- nosy: +asvetlov type: performance -> behavior ___ Python tracker <http://bugs.python.org/issu

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

2012-12-28 Thread Andrew Svetlov
Andrew Svetlov added the comment: Agree with you, Hynek. It should be fixed in 3.4 only (and change should be well documented). -- ___ Python tracker <http://bugs.python.org/issue15

[issue16782] No curses.initwin: Incorrect package docstring for curses

2012-12-29 Thread Andrew Svetlov
Andrew Svetlov added the comment: Fixed in active development branches. Thanks. -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue16782> ___ ___

[issue16782] No curses.initwin: Incorrect package docstring for curses

2012-12-29 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- resolution: -> fixed stage: -> committed/rejected status: open -> closed versions: +Python 2.7, Python 3.2, Python 3.4 ___ Python tracker <http://bugs.python.or

[issue16434] SocketServer call shutdown in the wrong way

2012-12-29 Thread Andrew Svetlov
Andrew Svetlov added the comment: Move to pending until additional info will be provided. Required short test to reproduce the problem. -- status: open -> pending ___ Python tracker <http://bugs.python.org/issu

[issue16731] xxlimited/xxmodule docstrings ambiguous

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

[issue16817] test___all__ has to save and restore sys.modules while it does all the importing

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

[issue15083] Rewrite ElementTree tests in a cleaner and safer way

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

[issue16715] Get rid of IOError. Use OSError instead

2013-01-10 Thread Andrew Svetlov
Andrew Svetlov added the comment: It's not a typo. 1. LoadError is inherited from OSError so LoadError exception is also caught. 2. Pointed code just resets cookie state and reraises exception, exception type is saved. The code is correct from my perspe

[issue13198] Remove duplicate definition of write_record_file

2013-01-10 Thread Andrew Svetlov
Andrew Svetlov added the comment: Eric, if you want to keep distutils2 issues on the tracker for a while — I'm ok with that. -- ___ Python tracker <http://bugs.python.org/is

[issue16218] Python launcher does not support unicode characters

2013-01-10 Thread Andrew Svetlov
Andrew Svetlov added the comment: Thanks! -- ___ Python tracker <http://bugs.python.org/issue16218> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue16893] Create IDLE help.txt from Doc/library/idle.rst

2013-01-11 Thread Andrew Svetlov
Andrew Svetlov added the comment: I like the proposition in general, but files should be synchronized first. -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue16

[issue16715] Get rid of IOError. Use OSError instead

2013-01-11 Thread Andrew Svetlov
Andrew Svetlov added the comment: LoadError was IOError descendant, now OSError is directly specified. If somebody want to change base class for LoadError he should to update the code in several places in http/cookiejar.py. The docstring for FileCookieJar.revert directly specifies possible

[issue16715] Get rid of IOError. Use OSError instead

2013-01-14 Thread Andrew Svetlov
Andrew Svetlov added the comment: Please email python-dev if you think LoadError should be directly specified. -- ___ Python tracker <http://bugs.python.org/issue16

[issue5066] IDLE documentation for Unix obsolete/incorrect

2013-01-14 Thread Andrew Svetlov
Andrew Svetlov added the comment: Pushed. Thanks. -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.o

[issue16932] urlparse fails at parsing "www.python.org:80/"

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

[issue16893] Create IDLE help.txt from Doc/library/idle.rst

2013-01-14 Thread Andrew Svetlov
Andrew Svetlov added the comment: Regenerating idle.txt and committing it is fine to me. -- ___ Python tracker <http://bugs.python.org/issue16893> ___ ___ Pytho

[issue15539] Fixing Tools/scripts/pindent.py

2013-01-14 Thread Andrew Svetlov
Andrew Svetlov added the comment: Is it fixed now? -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue15539> ___ ___ Python-bugs-list mailin

[issue16823] Python crashes on running tkinter code with threads

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

[issue16887] IDLE - tabify/untabify applied when clicking Cancel

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

[issue16901] In http.cookiejar.FileCookieJar() the .load() and .revert() methods don't work

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

[issue16921] Docs of subprocess.CREATE_NEW_CONSOLE are wrong

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

[issue16935] unittest should understand SkipTest at import time during test discovery

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

[issue15436] __sizeof__ is not documented

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

[issue16985] Docs reference a concrete UTC tzinfo, but none exists

2013-01-18 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- stage: -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.org/issue16985> ___ ___ Pyth

[issue17006] Warn users about hashing secrets?

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

[issue16991] Add OrderedDict written in C

2013-01-25 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue16991> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue17098] Set __loader__ on modules imported by the C level

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

[issue17099] Raise ValueError when __loader__ not defined for importlib.find_loader()

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

<    19   20   21   22   23   24   25   26   >