Changes by Andrew Svetlov :
--
nosy: +asvetlov
___
Python tracker
<http://bugs.python.org/issue16480>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Andrew Svetlov :
--
nosy: +asvetlov
___
Python tracker
<http://bugs.python.org/issue16465>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Andrew Svetlov :
--
nosy: +asvetlov
___
Python tracker
<http://bugs.python.org/issue15346>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Andrew Svetlov :
--
nosy: +asvetlov
___
Python tracker
<http://bugs.python.org/issue16490>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Andrew Svetlov :
--
nosy: +asvetlov
___
Python tracker
<http://bugs.python.org/issue16487>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Andrew Svetlov :
--
nosy: +asvetlov
___
Python tracker
<http://bugs.python.org/issue16500>
___
___
Python-bugs-list mailing list
Unsubscribe:
Andrew Svetlov added the comment:
I'm agree with solution, see my comments in review for the patch.
--
nosy: +asvetlov
___
Python tracker
<http://bugs.python.org/is
Andrew Svetlov added the comment:
Perhaps it's a bit new behavior and should be applied to 3.4 only.
--
___
Python tracker
<http://bugs.python.org/is
Andrew Svetlov added the comment:
Fixed. Thanks.
--
nosy: +asvetlov
resolution: -> fixed
stage: patch review -> committed/rejected
status: open -> closed
___
Python tracker
<http://bugs.python.or
Changes by Andrew Svetlov :
--
nosy: +asvetlov
___
Python tracker
<http://bugs.python.org/issue16474>
___
___
Python-bugs-list mailing list
Unsubscribe:
Andrew Svetlov added the comment:
LGTM
--
nosy: +asvetlov
___
Python tracker
<http://bugs.python.org/issue16477>
___
___
Python-bugs-list mailing list
Unsubscribe:
Andrew Svetlov added the comment:
+0 for patch
--
nosy: +asvetlov
___
Python tracker
<http://bugs.python.org/issue16488>
___
___
Python-bugs-list mailin
New submission from Andrew Svetlov:
http://greentreesnakes.readthedocs.org/en/latest/index.html
is excellent and comprehensive documentation for ast tree structures.
It would be nice to incorporate that docs into stdlib documentation, but adding
*see also* section is good enoigh as first step
Andrew Svetlov added the comment:
I've done it just now sending him message via bitbucket.
--
___
Python tracker
<http://bugs.python.org/issue16544>
___
___
Andrew Svetlov added the comment:
The patch is better than current doc.
Would you like to replace textual description of stack layout with some kind of
ascii-art or table? I think it can be more readable.
--
nosy: +asvetlov
___
Python tracker
<h
Andrew Svetlov added the comment:
Pushed.
Thanks, Alexey.
--
versions: +Python 3.4 -Python 3.3
___
Python tracker
<http://bugs.python.org/issue16464>
___
___
Pytho
Changes by Andrew Svetlov :
--
assignee: -> asvetlov
resolution: -> fixed
stage: needs patch -> committed/rejected
status: open -> closed
___
Python tracker
<http://bugs.python
Changes by Andrew Svetlov :
--
nosy: +asvetlov
___
Python tracker
<http://bugs.python.org/issue15716>
___
___
Python-bugs-list mailing list
Unsubscribe:
Andrew Svetlov added the comment:
Fixed. Thanks.
--
nosy: +asvetlov
resolution: -> fixed
stage: patch review -> committed/rejected
status: open -> closed
___
Python tracker
<http://bugs.python.or
Andrew Svetlov added the comment:
Really I don't know what's better. Victor, what do you think?
--
___
Python tracker
<http://bugs.python.org/issue16323>
___
__
Changes by Andrew Svetlov :
--
keywords: +easy
stage: -> needs patch
type: -> enhancement
versions: +Python 3.4
___
Python tracker
<http://bugs.python.org/i
Andrew Svetlov added the comment:
I think nothing bad to push additional tests into 3.3 also.
--
___
Python tracker
<http://bugs.python.org/issue16474>
___
___
Andrew Svetlov added the comment:
Sorry, looks like it work already was done. Reverting: c008f070f88a
814403d824a5 ddcf09a348ca
--
nosy: +asvetlov
resolution: -> duplicate
stage: patch review -> committed/rejected
status: open -> closed
_
Andrew Svetlov added the comment:
Fixed. Thanks, Serhiy
--
resolution: -> fixed
stage: patch review -> committed/rejected
status: open -> closed
___
Python tracker
<http://bugs.python.or
Andrew Svetlov added the comment:
Removed bad sentence.
--
___
Python tracker
<http://bugs.python.org/issue16323>
___
___
Python-bugs-list mailing list
Unsub
Andrew Svetlov added the comment:
I think it should not be fixed in 2.7, so I guess to close the issue as wontfix.
--
nosy: +asvetlov
___
Python tracker
<http://bugs.python.org/issue16
Changes by Andrew Svetlov :
--
nosy: +asvetlov
___
Python tracker
<http://bugs.python.org/issue15989>
___
___
Python-bugs-list mailing list
Unsubscribe:
Andrew Svetlov added the comment:
Pushed doc patch.
Nick, is it good for you?
--
Added file: http://bugs.python.org/file28159/issue16194.diff
___
Python tracker
<http://bugs.python.org/issue16
Andrew Svetlov added the comment:
Documentation is fixed, behavior cannot be changed.
Close the issue
--
resolution: -> fixed
stage: needs patch -> committed/rejected
status: open -> closed
___
Python tracker
<http://bugs.python.or
Andrew Svetlov added the comment:
Updated the patch. Is it ok now?
--
nosy: +asvetlov
Added file: http://bugs.python.org/file28166/issue10589.diff
___
Python tracker
<http://bugs.python.org/issue10
Changes by Andrew Svetlov :
--
nosy: +asvetlov
___
Python tracker
<http://bugs.python.org/issue13120>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Andrew Svetlov :
--
nosy: +asvetlov
___
Python tracker
<http://bugs.python.org/issue16049>
___
___
Python-bugs-list mailing list
Unsubscribe:
New submission from Andrew Svetlov:
GvR in http://mail.python.org/pipermail/python-ideas/2012-November/017991.html
has requested for improving pdb to jump over yield instead of following it.
--
components: Library (Lib)
messages: 176815
nosy: asvetlov, gvanrossum
priority: normal
Andrew Svetlov added the comment:
Patch attached.
It modifies "next", "return" and "until" commands behavior when they are
executed if current debugged function is generator.
1. "next" skips stack unwindind if yield tries to follow it. Now it goes just
Changes by Andrew Svetlov :
--
title: Skip stack unwinding when "next", "until" and "return" pdb commands
executed -> Skip stack unwinding when "next", "until" and "return" pdb
commands executed in generator context
Andrew Svetlov added the comment:
request should be socket.socket instance which definitely has shutdown method
accepting socket.SHUT_WR.
I guest the problem not in stdlib but in your code or maybe in the Paste (I'm
not familiar with it,
Changes by Andrew Svetlov :
--
stage: needs patch -> test needed
___
Python tracker
<http://bugs.python.org/issue16434>
___
___
Python-bugs-list mailing list
Un
Andrew Svetlov added the comment:
Uploaded updated cumulative patch.
Can we apply the patch to 3.2 or at least to 3.3?
I see nothing wrong with it, but I'm ok with pushing to 3.4 only if we want to
be extra careful.
--
assignee: -> asvetlov
versions: +Python 3.4
Added fi
Andrew Svetlov added the comment:
After trying to make patch I've realized — better to leave current behavior as
is and change documentation only.
--
___
Python tracker
<http://bugs.python.org/is
Andrew Svetlov added the comment:
Thanks for report.
The patch is really trivial, but I don't sure if it can be applied to released
python versions.
--
keywords: +patch
nosy: +asvetlov
Added file: http://bugs.python.org/file28198/issue16582
Andrew Svetlov added the comment:
Fixed. Thanks for report.
As tkinter code is not processed via 2to3 tool now, I've fixed
tkinter/__init__.py and like to close the issue.
If there are problems in 2to3 please open new ticket dedicated to 2to3 tool
only, not related to tk
Changes by Andrew Svetlov :
--
nosy: +asvetlov
___
Python tracker
<http://bugs.python.org/issue16492>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Andrew Svetlov :
--
nosy: +asvetlov
___
Python tracker
<http://bugs.python.org/issue16494>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Andrew Svetlov :
--
nosy: +asvetlov
___
Python tracker
<http://bugs.python.org/issue16495>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Andrew Svetlov :
--
nosy: +asvetlov
___
Python tracker
<http://bugs.python.org/issue16496>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Andrew Svetlov :
--
nosy: +asvetlov
___
Python tracker
<http://bugs.python.org/issue16499>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Andrew Svetlov :
--
nosy: +asvetlov
___
Python tracker
<http://bugs.python.org/issue16511>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Andrew Svetlov :
--
nosy: +asvetlov
___
Python tracker
<http://bugs.python.org/issue16531>
___
___
Python-bugs-list mailing list
Unsubscribe:
Andrew Svetlov added the comment:
Rename skip_yield to skipyield
--
Added file: http://bugs.python.org/file28205/issue16596_v2.diff
___
Python tracker
<http://bugs.python.org/issue16
Andrew Svetlov added the comment:
Fixed. Thanks.
--
resolution: -> fixed
stage: patch review -> committed/rejected
status: open -> closed
___
Python tracker
<http://bugs.python.or
Andrew Svetlov added the comment:
I think that usage is not officially supported, so we cannot grant this way
will work forever.
--
___
Python tracker
<http://bugs.python.org/issue16
Andrew Svetlov added the comment:
Patch is welcome!
--
___
Python tracker
<http://bugs.python.org/issue15346>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Andrew Svetlov :
--
nosy: +asvetlov
___
Python tracker
<http://bugs.python.org/issue16612>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Andrew Svetlov :
--
nosy: +asvetlov
___
Python tracker
<http://bugs.python.org/issue8865>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Andrew Svetlov :
--
nosy: +asvetlov
___
Python tracker
<http://bugs.python.org/issue12268>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Andrew Svetlov :
--
nosy: +asvetlov
___
Python tracker
<http://bugs.python.org/issue16602>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Andrew Svetlov :
--
nosy: +asvetlov
___
Python tracker
<http://bugs.python.org/issue14913>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Andrew Svetlov :
--
nosy: +asvetlov
___
Python tracker
<http://bugs.python.org/issue14728>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Andrew Svetlov :
--
nosy: +asvetlov
___
Python tracker
<http://bugs.python.org/issue14743>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Andrew Svetlov :
--
nosy: +asvetlov
___
Python tracker
<http://bugs.python.org/issue16180>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Andrew Svetlov :
--
nosy: +asvetlov
___
Python tracker
<http://bugs.python.org/issue13044>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Andrew Svetlov :
--
nosy: +asvetlov
___
Python tracker
<http://bugs.python.org/issue14912>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Andrew Svetlov :
--
nosy: +asvetlov
___
Python tracker
<http://bugs.python.org/issue16482>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Andrew Svetlov :
--
nosy: +asvetlov
___
Python tracker
<http://bugs.python.org/issue9633>
___
___
Python-bugs-list mailing list
Unsubscribe:
Andrew Svetlov added the comment:
Will take a look.
--
___
Python tracker
<http://bugs.python.org/issue13120>
___
___
Python-bugs-list mailing list
Unsubscribe:
Andrew Svetlov added the comment:
Failed test is skipped if there are no threads.
Thanks for report, Stefan!
--
___
Python tracker
<http://bugs.python.org/issue13
Andrew Svetlov added the comment:
Do we need to fix it at all?
On finalizing pdb can stop working at some time, but debugging on finalization
stage can be still useful in certain cases.
Xavier, your proposition noticeably changes current behavior as I understand it.
For now set_trace() works
Andrew Svetlov added the comment:
Fixed in a58204570a7c, 3cb85250a0a3, 93742b046519.
--
assignee: stutzbach -> asvetlov
resolution: -> fixed
stage: patch review -> committed/rejected
status: open -> closed
___
Python tracker
<http://
Andrew Svetlov added the comment:
Your example is comprehensive but not simple and obvious.
I think better to keep it out of doc.
--
nosy: +asvetlov
___
Python tracker
<http://bugs.python.org/issue16
Andrew Svetlov added the comment:
I think the problem is: windows process can contain single shared win32 API and
several CRT copies — one for Visual Studio 2008, other for VS 2010 etc. We
cannot know which CRT version is used by particular extension, so I doubt we
can initialize it properly
Andrew Svetlov added the comment:
LGTM
--
___
Python tracker
<http://bugs.python.org/issue16495>
___
___
Python-bugs-list mailing list
Unsubscribe:
Andrew Svetlov added the comment:
Committed, except whatsnew files.
That ones should be untouched from my perspective — the issue is not bugfix but
improvement and I see no reason why we need to backedit whatsnew for old
outdated versions.
Changesetes fed7306f26ce, 268ead8ae46b, 9e4b003a4d7a
New submission from Andrew Svetlov:
http://www.python.org/dev/peps/pep-3151 define exception classes like
ConnectionError and BrokenPipeError
We need to refactor stdlib to use that shiny new exceptions instead of checking
errno values if possible.
Also maybe we need to add some absent
Andrew Svetlov added the comment:
Please, feel free to add me in nosylist for any issue related to this one.
--
___
Python tracker
<http://bugs.python.org/issue16
Andrew Svetlov added the comment:
The patch LGTM.
About _handle_exitstatus: I guess nothing wrong to fix it also.
--
___
Python tracker
<http://bugs.python.org/issue16
Changes by Andrew Svetlov :
--
nosy: +asvetlov
___
Python tracker
<http://bugs.python.org/issue16651>
___
___
Python-bugs-list mailing list
Unsubscribe:
Andrew Svetlov added the comment:
Fixed. Thanks.
--
resolution: -> fixed
stage: -> committed/rejected
status: open -> closed
___
Python tracker
<http://bugs.python.or
Andrew Svetlov added the comment:
Close the issue as duplicate for #16490
--
nosy: +asvetlov
resolution: -> duplicate
stage: test needed -> committed/rejected
status: open -> closed
superseder: -> "inspect.getargspec()" and "inspect.getcallargs(
Andrew Svetlov added the comment:
How Argument Clinic solves problems like #16490?
--
___
Python tracker
<http://bugs.python.org/issue16612>
___
___
Python-bug
Andrew Svetlov added the comment:
LGTM
--
___
Python tracker
<http://bugs.python.org/issue16049>
___
___
Python-bugs-list mailing list
Unsubscribe:
Andrew Svetlov added the comment:
I've reworded patch a bit and made it based on 3.2 for easier merging.
--
nosy: +asvetlov
Added file: http://bugs.python.org/file28302/issue16667_v2.diff
___
Python tracker
<http://bugs.python.org/is
Changes by Andrew Svetlov :
--
stage: needs patch -> patch review
___
Python tracker
<http://bugs.python.org/issue16667>
___
___
Python-bugs-list mai
Andrew Svetlov added the comment:
+1 for leaving the doc as is
--
nosy: +asvetlov
___
Python tracker
<http://bugs.python.org/issue16670>
___
___
Python-bugs-list m
Changes by Andrew Svetlov :
--
nosy: +asvetlov
___
Python tracker
<http://bugs.python.org/issue1>
___
___
Python-bugs-list mailing list
Unsubscribe:
Andrew Svetlov added the comment:
Done. I prefer to leave existing class order in documentation.
In general I agree with Eric that ABC should be before ABCMeta in the doc but
now it has formalized as helper for metaclass with very short documentation.
To put ABC first we need to transplate
Andrew Svetlov added the comment:
Thanks, Bruno.
--
resolution: -> fixed
stage: -> committed/rejected
status: open -> closed
___
Python tracker
<http://bugs.python.or
Changes by Andrew Svetlov :
--
nosy: +asvetlov
___
Python tracker
<http://bugs.python.org/issue1818>
___
___
Python-bugs-list mailing list
Unsubscribe:
Andrew Svetlov added the comment:
Committed. Sorry for delay.
Thanks, Vaclav!
--
resolution: -> fixed
stage: -> committed/rejected
status: open -> closed
___
Python tracker
<http://bugs.python.or
Andrew Svetlov added the comment:
The error can be reproduced for 2.7 and 3.2.
Starting from 3.3 os.error and IOError both aliases for OSError and patch
doesn't needed.
--
nosy: +asvetlov
___
Python tracker
<http://bugs.python.org/is
Andrew Svetlov added the comment:
+1 for closing as "won't fix"
--
nosy: +asvetlov
___
Python tracker
<http://bugs.python.org/issue16678>
___
___
Andrew Svetlov added the comment:
Fixed.
Antoine, you are right: foo and bar was bad names.
--
resolution: -> fixed
status: open -> closed
___
Python tracker
<http://bugs.python.org/i
Changes by Andrew Svetlov :
--
nosy: +asvetlov
___
Python tracker
<http://bugs.python.org/issue16597>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Andrew Svetlov :
--
nosy: +asvetlov
___
Python tracker
<http://bugs.python.org/issue16601>
___
___
Python-bugs-list mailing list
Unsubscribe:
Andrew Svetlov added the comment:
Fixed. Thanks, Serhiy.
--
nosy: +asvetlov
resolution: -> fixed
stage: patch review -> committed/rejected
status: open -> closed
___
Python tracker
<http://bugs.python.or
Changes by Andrew Svetlov :
--
assignee: asvetlov
components: Library (Lib)
nosy: asvetlov
priority: normal
severity: normal
status: open
title: Get rid of select.error in stdlib. Use OSError instead
type: enhancement
versions: Python 3.4
___
Python
Changes by Andrew Svetlov :
--
dependencies: +Get rid of select.error in stdlib. Use OSError instead
___
Python tracker
<http://bugs.python.org/issue16
Andrew Svetlov added the comment:
Fixed.
--
resolution: -> fixed
stage: needs patch -> committed/rejected
status: open -> closed
___
Python tracker
<http://bugs.python.or
New submission from Andrew Svetlov:
Probably it is long enough work and should be done in several iteration after
converting all exceptions like IOError, EnvironmentError, WindowsError,
mmap.error, socket.error and select.error to OSError.
--
assignee: asvetlov
components: Library
Changes by Andrew Svetlov :
--
dependencies: +Use concrete classes inherited from OSError instead of errno
check
___
Python tracker
<http://bugs.python.org/issue16
Changes by Andrew Svetlov :
--
assignee: asvetlov
components: Library (Lib)
nosy: asvetlov
priority: normal
severity: normal
status: open
title: Get rid of os.error. Use OSError instead
type: behavior
versions: Python 3.4
___
Python tracker
<h
2201 - 2300 of 2519 matches
Mail list logo