[issue16218] Python launcher does not support non ascii characters

2012-11-01 Thread Andrew Svetlov
Andrew Svetlov added the comment: Vinay, it's processed in PyObject_CallFunction(loader_type, "sN", "__main__", filename_obj) Please note "sN" format istead "sO". "N" means PyObject

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

2012-11-01 Thread Andrew Svetlov
Andrew Svetlov added the comment: No problems! -- ___ Python tracker <http://bugs.python.org/issue14900> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue16228] JSON crashes during encoding resized lists

2012-11-01 Thread Andrew Svetlov
Andrew Svetlov added the comment: Hi, I'm ok with patch but I guess to add some comment in C code to prevent, hmm, back optimization from upcoming contributor. The same for #16230 -- ___ Python tracker <http://bugs.python.org/is

[issue14893] Tutorial: Add function annotation example to function tutorial

2012-11-01 Thread Andrew Svetlov
Andrew Svetlov added the comment: Fixed. Thanks, Zachary. -- nosy: +asvetlov resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.or

[issue16261] Fix bare excepts in various places in std lib

2012-11-01 Thread Andrew Svetlov
Andrew Svetlov added the comment: Sorry, looks like I don't understood you correctly. Do you want to replace `except:` to `except Exception` or something else? -- ___ Python tracker <http://bugs.python.org/is

[issue16228] JSON crashes during encoding resized lists

2012-11-01 Thread Andrew Svetlov
Andrew Svetlov added the comment: As I said tests was not crashed on my linux 64 bit Ubuntu with buggy code. -- ___ Python tracker <http://bugs.python.org/issue16

[issue16380] true/proper subset

2012-11-01 Thread Andrew Svetlov
Andrew Svetlov added the comment: Fixed in 56c3ab6f7f07, 56c3ab6f7f07, fa7311caa203, 7dda9dc5e830 Thanks. -- nosy: +asvetlov resolution: -> fixed stage: -> committed/rejected status: open -> closed versions: +Python 3.2, Python 3.4 _

[issue16228] JSON crashes during encoding resized lists

2012-11-01 Thread Andrew Svetlov
Andrew Svetlov added the comment: I have python built with Py_DEBUG (./configure --with-pydebug) What I' missed? I'm ok with status quo but just want to understand how to configure my build properly. -- ___ Python tracker <http://bu

[issue16228] JSON crashes during encoding resized lists

2012-11-01 Thread Andrew Svetlov
Andrew Svetlov added the comment: Ok. Thanks. -- ___ Python tracker <http://bugs.python.org/issue16228> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1207589] IDLE: Right Click Context Menu

2012-11-01 Thread Andrew Svetlov
Andrew Svetlov added the comment: Committed. Thanks to all. Keeping in mind idlelib is a bit specific part of stdlib which cannot make backward incompatibility I've committed to 2.7, 3.2, 3.3 and 3.4. -- resolution: accepted -> fixed stage: patch review -> committed/reje

[issue15767] add ModuleNotFoundError

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

[issue1207589] IDLE: Right Click Context Menu

2012-11-02 Thread Andrew Svetlov
Andrew Svetlov added the comment: I thought it's desirable feature which cannot produce backward incompatibility problems. Can revert commits for 2.7-3.3 if needed. -- ___ Python tracker <http://bugs.python.org/issu

[issue16218] Python launcher does not support non ascii characters

2012-11-02 Thread Andrew Svetlov
Andrew Svetlov added the comment: I see. Sorry, my fault. Give me weekend to figure out why it fails. Thanks. -- assignee: -> asvetlov ___ Python tracker <http://bugs.python.org/issu

[issue16261] Fix bare excepts in various places in std lib

2012-11-02 Thread Andrew Svetlov
Andrew Svetlov added the comment: I've fixed bare except: in docs. Tomorrow we will have Python sprint in Kiev. Maybe somebody will take a look on Lib. -- ___ Python tracker <http://bugs.python.org/is

[issue16218] Python launcher does not support non ascii characters

2012-11-02 Thread Andrew Svetlov
Andrew Svetlov added the comment: Perhaps we have to skip tests if filesystem encoding doesn't support wide characters. Not sure about the way: should we skip if sys.getfilesystemencoding() is not utf8 or better to try encode path and skip if it fails? I think the later is b

[issue16353] add function to os module for getting path to default shell

2012-11-02 Thread Andrew Svetlov
Andrew Svetlov added the comment: I guess to return sh if supported, cmd.exe for Windows. The reason is: other shells can have different calling agreements (I mean rules to process command line). subprocess intended to use by library writers, so we need solid well known basis. There are

[issue16218] Python launcher does not support non ascii characters

2012-11-02 Thread Andrew Svetlov
Andrew Svetlov added the comment: Looking on the last message from Stefan I think we have to check cmdpath to be encoded via sys.getfilesystemencoding() first and skip test if fails. -- ___ Python tracker <http://bugs.python.org/issue16

[issue16353] add function to os module for getting path to default shell

2012-11-02 Thread Andrew Svetlov
Andrew Svetlov added the comment: BTW, according to PEP 11 (http://www.python.org/dev/peps/pep-0011/) Python 3.4 will remove code for "Windows systems where COMSPEC points to command.com". There are only winner: cmd.exe as well known shell good as default, command.com is gone. cmd.

[issue16218] Python launcher does not support non ascii characters

2012-11-02 Thread Andrew Svetlov
Andrew Svetlov added the comment: I will fix it tomorrow at Kiev Python sprint. -- ___ Python tracker <http://bugs.python.org/issue16218> ___ ___ Python-bug

[issue1207589] IDLE: Right Click Context Menu

2012-11-02 Thread Andrew Svetlov
Andrew Svetlov added the comment: I guess the schema: keep the current state a while. Please test context menu for all configurations you have. If you will have any problem — commits will be reverted. If anybody will report about backward incompatibility problems — I'll revert ch

[issue1207589] IDLE: Right Click Context Menu

2012-11-03 Thread Andrew Svetlov
Andrew Svetlov added the comment: LGTM -- ___ Python tracker <http://bugs.python.org/issue1207589> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue16218] Python launcher does not support unicode characters

2012-11-03 Thread Andrew Svetlov
Andrew Svetlov added the comment: I like to follow Stefan suggestion. New test is simple and it works. -- ___ Python tracker <http://bugs.python.org/issue16

[issue13238] Add shell command helpers to subprocess module

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

[issue16309] "PYTHONPATH=" different from no PYTHONPATH at all

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

[issue16284] concurrent.futures ThreadPoolExecutor keeps unnecessary references to worker functions.

2012-11-03 Thread Andrew Svetlov
Andrew Svetlov added the comment: Committed. Thanks. -- resolution: -> fixed stage: -> test needed status: open -> closed ___ Python tracker <http://bugs.python.or

[issue16353] add function to os module for getting path to default shell

2012-11-03 Thread Andrew Svetlov
Andrew Svetlov added the comment: I would to prefer *get_default_shell* as function name (it's a bit shorter). Also please add ".. versionadded:: 3.4" tag to docs. -- ___ Python tracker <http://bugs.pyt

[issue16284] concurrent.futures ThreadPoolExecutor keeps unnecessary references to worker functions.

2012-11-03 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- stage: test needed -> committed/rejected ___ Python tracker <http://bugs.python.org/issue16284> ___ ___ Python-bugs-list mai

[issue7317] Display full tracebacks when an error occurs asynchronously

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

[issue16353] add function to os module for getting path to default shell

2012-11-03 Thread Andrew Svetlov
Andrew Svetlov added the comment: Is it ok to import *which* functions from shutil in *os* module? There is only reason to put function into shutil. But I like Christian's sketch. Also, what reason to get shell name from COMSPEC? What should we do if COMSPEC points to some another shell

[issue16218] Python launcher does not support unicode characters

2012-11-04 Thread Andrew Svetlov
Andrew Svetlov added the comment: I like the last patch from Victor. It works on Windows also. -- ___ Python tracker <http://bugs.python.org/issue16218> ___ ___

[issue15641] Clean up importlib for Python 3.4

2012-11-04 Thread Andrew Svetlov
Andrew Svetlov added the comment: Thanks, Taras. -- resolution: -> fixed stage: commit review -> committed/rejected status: open -> closed type: -> enhancement ___ Python tracker <http://bugs.python

[issue16218] Python launcher does not support unicode characters

2012-11-04 Thread Andrew Svetlov
Andrew Svetlov added the comment: Well. Fix (and test) is related to bug in python itself (./Python/pythonrun.c) pylauncher should be tested also, you are right. -- ___ Python tracker <http://bugs.python.org/issue16

[issue16353] add function to os module for getting path to default shell

2012-11-05 Thread Andrew Svetlov
Andrew Svetlov added the comment: Christian, Is there ``os.confstr`` supported by MaxOS X? Is there using of environ['PATH'] makes sense as good callback if former is not present? About COMSPEC. From my point of view it's useful if we need default path. Or if we have Win9x,

[issue14266] pyunit script as shorthand for python -m unittest

2012-11-05 Thread Andrew Svetlov
Andrew Svetlov added the comment: Is it should be separate binary? Or problem can be solved by regular python script with executable bit? What's about Windows? -- ___ Python tracker <http://bugs.python.org/is

[issue14965] super() and property inheritance behavior

2012-11-05 Thread Andrew Svetlov
Andrew Svetlov added the comment: I would say @x.deleter def x(self): del super().x confuses me a bit. But I'm only -0, let's see other developers for their opinions. -- ___ Python tracker <http://bugs.python.o

[issue16421] importlib.machinery.ExtensionFileLoader cannot load several modules from the same shared object

2012-11-06 Thread Andrew Svetlov
Andrew Svetlov added the comment: Storing several modules in single so/pyd file is crazy idea from my perspective. The test is definitely required. BTW, Why version is set to 3.5? Should component be set to "Interpreter code"? -- nosy:

[issue16421] importlib.machinery.ExtensionFileLoader cannot load several modules from the same shared object

2012-11-06 Thread Andrew Svetlov
Andrew Svetlov added the comment: Amaury, I'm ok with pushing several modules into python33.dll or embedding it directly into executable. For standard so/dll files you have to use different file names for modules to make regular import statement work. It can be done via symlink/hardlink

[issue16420] PEP 249 (DB-API 2.0) converted to reStructuredText

2012-11-06 Thread Andrew Svetlov
Andrew Svetlov added the comment: Original file has been changed just now. Also it would be nice to get diff, not just new file (to check correctness of transition). -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue16

[issue16353] add function to os module for getting path to default shell

2012-11-06 Thread Andrew Svetlov
Andrew Svetlov added the comment: Confirm it for SL4A Python 3.2 -- ___ Python tracker <http://bugs.python.org/issue16353> ___ ___ Python-bugs-list mailin

[issue16421] importlib.machinery.ExtensionFileLoader cannot load several modules from the same shared object

2012-11-06 Thread Andrew Svetlov
Andrew Svetlov added the comment: Reviewed and commented the last patch. -- ___ Python tracker <http://bugs.python.org/issue16421> ___ ___ Python-bugs-list mailin

[issue16353] add function to os module for getting path to default shell

2012-11-06 Thread Andrew Svetlov
Andrew Svetlov added the comment: I mean the last available SL4A doesn't have os.confstr Fallback should work, os.environ['PATH'] contains '/system/bin' where 'sh' is living. -- ___ Python tracker

[issue16421] importlib.machinery.ExtensionFileLoader cannot load several modules from the same shared object

2012-11-07 Thread Andrew Svetlov
Andrew Svetlov added the comment: Looks better, will check on Windows a bit later. BTW, ACKS and NEWS are usually edited by committer, but leave that as is for now. -- versions: +Python 3.4 -Python 3.5 ___ Python tracker <http://bugs.python.

[issue16416] Mac OS X: don't use the locale encoding but UTF-8 to encode and decode filenames

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

[issue16432] Template strings documentation in Python 3 refers to % substitution in present tense

2012-11-07 Thread Andrew Gorcester
New submission from Andrew Gorcester: Documentation here: http://docs.python.org/3/library/string.html#template-strings says "Instead of the normal %-based substitutions, Templates support $-based substitutions..." I believe it is confusing to refer to %-based substitutions in

[issue16421] importlib.machinery.ExtensionFileLoader cannot load several modules from the same shared object

2012-11-07 Thread Andrew Svetlov
Andrew Svetlov added the comment: Václav, your patch passed on Windows. Will commit it after double check. Thanks. -- assignee: -> asvetlov ___ Python tracker <http://bugs.python.org/issu

[issue16432] Template strings documentation in Python 3 refers to % substitution in present tense

2012-11-07 Thread Andrew Gorcester
Andrew Gorcester added the comment: Sorry, my mistake -- I thought that %-based formatting had been deprecated and removed by now, because it wasn't documented in library/string.html . However, I still think referring to %-based formatting as "normal" in Python 3 is confusin

[issue16433] unittest.TestCase.assertNotEqual has incorrect docstring.

2012-11-08 Thread Andrew Svetlov
Andrew Svetlov added the comment: Maybe better to use: Fail if the two objects are *not* equal as determined by the '!=' operator. ??? -- nosy: +asvetlov ___ Python tracker <http://bugs.python.o

[issue16436] Missing anchor in doc

2012-11-08 Thread Andrew Svetlov
Andrew Svetlov added the comment: I guess the reason is that names are classes, not functions. See http://docs.python.org/3/library/functions.html#func-dict also for example. -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue16

[issue16435] Python 3 doc link to Python 2 FAQ

2012-11-08 Thread Andrew Svetlov
Andrew Svetlov added the comment: Fixed. Thanks. -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue16435> ___ ___ Python-bugs-list mailin

[issue16435] Python 3 doc link to Python 2 FAQ

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

[issue16433] unittest.TestCase.assertNotEqual has incorrect docstring.

2012-11-08 Thread Andrew Svetlov
Andrew Svetlov added the comment: Oops. Sorry, my fault. -- ___ Python tracker <http://bugs.python.org/issue16433> ___ ___ Python-bugs-list mailing list Unsub

[issue16439] Code not collapsed correctly

2012-11-08 Thread Andrew Svetlov
Andrew Svetlov added the comment: No, it isn't sphinx bug, it's markup problem. Will commit a fix in few minutes. -- nosy: +asvetlov ___ Python tracker <http://bugs.python.o

[issue16439] Code not collapsed correctly

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

[issue16469] Exceptions raised by Fraction() different from those raised by int()

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

[issue14373] C implementation of functools.lru_cache

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

[issue16144] misleading sentence in reference/import

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

[issue16144] misleading sentence in reference/import

2012-11-15 Thread Andrew Svetlov
Andrew Svetlov added the comment: Fixed in a8ca14983ab1 and 9961a0dafcc7. Thanks, Manuel. -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue16

[issue16470] Backport set and dictionary comprehensions in tutorial to 2.7

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

[issue16386] imp.find_module does not specify registry key it searches on windows

2012-11-15 Thread Andrew Svetlov
Andrew Svetlov added the comment: I think much more important to mention registry key in http://docs.python.org/3/library/importlib.html#importlib.machinery.WindowsRegistryFinder ``imp`` is private module to access implementation internals but ``importlib`` is public interface to import

[issue16391] add "terminator" ctor argument to logging.StreamHandlers derived handlers

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

[issue16392] import crashes on circular imports in ext modules

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

[issue16404] Uses of PyLong_FromLong that don't check for errors

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

[issue16422] Decimal constants should be the same for py & c module versions

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

[issue16427] Faster hash implementation

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

[issue16429] Emit SyntaxWarning for code that risks UnboundLocalError

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

[issue16434] SocketServer call shutdown in the wrong way

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

[issue16444] Use support.TESTFN_UNDECODABLE on UNIX

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

[issue16447] SEGFAULT when setting type.__name__

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

[issue16446] pdb raises BdbQuit on 'quit' when started with set_trace

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

[issue16434] SocketServer call shutdown in the wrong way

2012-11-15 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- stage: -> needs patch ___ Python tracker <http://bugs.python.org/issue16434> ___ ___ Python-bugs-list mailing list Unsubscri

[issue16483] Make int(float('inf')) raise ValueError rather than OverflowError.

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

[issue16480] pyvenv 3.3 fails to create symlinks for /local/{bin, lib} to /{bin, lib}

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

[issue16465] dict creation performance regression

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

[issue15346] Tkinter extention modules have no documentation

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

[issue16490] "inspect.getargspec()" and "inspect.getcallargs()" don't work for builtins

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

[issue16487] Allow ssl certificates to be speficfied from memory rather than files.

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

[issue16500] Add an 'afterfork' module

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

[issue16464] urllib.request: opener not resetting content-length

2012-11-22 Thread Andrew Svetlov
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

[issue16464] urllib.request: opener not resetting content-length

2012-11-22 Thread Andrew Svetlov
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

[issue16538] The docs doesn't describe MAKE_CLOSURE correctly

2012-11-23 Thread Andrew Svetlov
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

[issue16474] More code coverage for imp module

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

[issue16477] tarfile fails to close file handles in case of exception

2012-11-23 Thread Andrew Svetlov
Andrew Svetlov added the comment: LGTM -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue16477> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue16488] Add context manager support to epoll object

2012-11-23 Thread Andrew Svetlov
Andrew Svetlov added the comment: +0 for patch -- nosy: +asvetlov ___ Python tracker <http://bugs.python.org/issue16488> ___ ___ Python-bugs-list mailin

[issue16544] Add external link to ast docs

2012-11-23 Thread Andrew Svetlov
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

[issue16544] Add external link to ast docs

2012-11-23 Thread Andrew Svetlov
Andrew Svetlov added the comment: I've done it just now sending him message via bitbucket. -- ___ Python tracker <http://bugs.python.org/issue16544> ___ ___

[issue16554] The description of the argument of MAKE_FUNCTION and MAKE_CLOSURE is incorrect

2012-11-26 Thread Andrew Svetlov
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

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

2012-11-26 Thread Andrew McNabb
Andrew McNabb added the comment: The --no-user-cfg option works for me in Python 2.7, but it does not seem to be in Python 3.2 or 3.3: error: option --no-user-cfg not recognized Am I doing something wrong, or was this feature only added to Python 2.7? -- nosy: +amcnabb

[issue16464] urllib.request: opener not resetting content-length

2012-11-27 Thread Andrew Svetlov
Andrew Svetlov added the comment: Pushed. Thanks, Alexey. -- versions: +Python 3.4 -Python 3.3 ___ Python tracker <http://bugs.python.org/issue16464> ___ ___ Pytho

[issue16464] urllib.request: opener not resetting content-length

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

[issue15716] Ability to specify the PYTHONPATH via a command line flag

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

[issue16323] Wrong C API documentation for locale encoding

2012-11-28 Thread Andrew Svetlov
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

[issue16323] Wrong C API documentation for locale encoding

2012-11-28 Thread Andrew Svetlov
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> ___ __

[issue16557] PEP 380 isn't reflected in the Functional Programming HOWTO

2012-11-28 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- keywords: +easy stage: -> needs patch type: -> enhancement versions: +Python 3.4 ___ Python tracker <http://bugs.python.org/i

[issue16474] More code coverage for imp module

2012-11-28 Thread Andrew Svetlov
Andrew Svetlov added the comment: I think nothing bad to push additional tests into 3.3 also. -- ___ Python tracker <http://bugs.python.org/issue16474> ___ ___

[issue11076] Iterable argparse Namespace

2012-11-28 Thread Andrew Svetlov
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 _

[issue16477] tarfile fails to close file handles in case of exception

2012-11-29 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

[issue16323] Wrong C API documentation for locale encoding

2012-11-29 Thread Andrew Svetlov
Andrew Svetlov added the comment: Removed bad sentence. -- ___ Python tracker <http://bugs.python.org/issue16323> ___ ___ Python-bugs-list mailing list Unsub

[issue16194] imp.load_dynamic imports wrong module when called several times on a multi-module .so

2012-11-29 Thread Andrew Svetlov
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

[issue15989] Possible integer overflow of PyLong_AsLong() results

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

[issue16194] imp.load_dynamic imports wrong module when called several times on a multi-module .so

2012-11-29 Thread Andrew Svetlov
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

<    21   22   23   24   25   26   27   28   29   30   >