[issue12029] Catching virtual subclasses in except clauses

2015-01-21 Thread Yuriy Taraday
Yuriy Taraday added the comment: Can we move forward and land this patch? It seems to be working and for some reason it even makes that microbenchmark work faster. -- versions: +Python 3.5 -Python 3.3 ___ Python tracker rep...@bugs.python.org http

[issue21078] multiprocessing.managers.BaseManager.__init__'s serializer argument is not documented

2014-03-29 Thread Yuriy Taraday
Yuriy Taraday added the comment: Adding Benjamin Peterson as original author of multiprocessing (according to hg logs) -- nosy: +benjamin.peterson ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21078

[issue21078] multiprocessing.managers.BaseManager.__init__'s serializer argument is not documented

2014-03-29 Thread Yuriy Taraday
Yuriy Taraday added the comment: Oh, sorry. -- nosy: -benjamin.peterson ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21078 ___ ___ Python-bugs

[issue21078] multiprocessing.managers.BaseManager.__init__'s serializer argument is not documented

2014-03-27 Thread Yuriy Taraday
New submission from Yuriy Taraday: We're going to use BaseManager for simple secure local RPC and for the secure part we can't use pickle, so we have to use serializer argument to switch to xmlrpclib. We need to be sure that argument won't go away so we need it to be documented and supported

[issue12029] Catching virtual subclasses in except clauses

2013-10-21 Thread Yuriy Taraday
Yuriy Taraday added the comment: Can someone please point out why do we have to do that dance with recursion limit? I've came upon this problem as well. I had some (bad) API I had to work with. It always raised the same exception with the only difference in the message. So I thought I could

[issue8883] Proxy exception lookup fails on MacOS in urllib.

2010-06-03 Thread Yuriy Taraday
New submission from Yuriy Taraday yorik@gmail.com: I have straight IP in my proxy exception list like 192.168.0.2 without mask specification. The proxy_bypass_macosx_sysconf function verifies each item in this list by regexp r(\d+(?:\.\d+)*)(/\d+)? that produces two groups: IP and mask

[issue8883] Proxy exception lookup fails on MacOS in urllib.

2010-06-03 Thread Yuriy Taraday
Yuriy Taraday yorik@gmail.com added the comment: The strange thing is that in both 2.7 and 3.1 branches there is no such code at all. Inernet Config is used there without mentioning any exceptions despite the fact that ic module is marked as deprecated and proxy bypass is real

[issue8883] Proxy exception lookup fails on MacOS in urllib.

2010-06-03 Thread Yuriy Taraday
Yuriy Taraday yorik@gmail.com added the comment: I'm completely lost 2.7 tree in svn. My last post was about 3.1.2 release. As I understand, System Configuration framework is being used since 2.6.5 and 3.2. So, this bug is about all this versions. -- versions: +Python 2.7, Python

[issue8006] os.popen in Python 3.1

2010-03-20 Thread Yuriy Taraday
Yuriy Taraday yorik@gmail.com added the comment: os.popen is obsolete and as I understand is removed from 3k. Use subprocess module instead. http://docs.python.org/library/os.html?highlight=popen#os.popen -- nosy: +yorik.sar ___ Python tracker

[issue8117] TimedRotatingFileHandler doesn't rotate log file at startup.

2010-03-12 Thread Yuriy Taraday
Yuriy Taraday yorik@gmail.com added the comment: Can this change be included in the 2.6 release? It's small enough but necessary for our current development. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8117

[issue8117] TimedRotatingFileHandler doesn't rotate log file at startup.

2010-03-11 Thread Yuriy Taraday
New submission from Yuriy Taraday yorik@gmail.com: Screnario: - start logging, log something; - stop logging (stop application, for example); - start logging again after rotate interval passes. log4j's RotatingFileAppender's behavior: After restart, logfile is rotated if nessesary