[issue3136] [PATCH] logging.config.fileConfig() compulsivly disable all existing loggers

2008-06-19 Thread Leandro Lucarella
Leandro Lucarella <[EMAIL PROTECTED]> added the comment: Here is a patch to add some documentation on the new fileConfig() argument. Is not much, but it's better than nothing =) Added file: http://bugs.python.org/file10662/logging.config.disable_existing_logger

[issue3136] [PATCH] logging.config.fileConfig() compulsivly disable all existing loggers

2008-06-19 Thread Leandro Lucarella
Leandro Lucarella <[EMAIL PROTECTED]> added the comment: Thank you very much ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue3136> ___ __

[issue3136] [PATCH] logging.config.fileConfig() compulsivly disable all existing loggers

2008-06-19 Thread Leandro Lucarella
Leandro Lucarella <[EMAIL PROTECTED]> added the comment: The problem is you can't always do that call before using the loggers. In my case, I get the logging config file via command-line arguments (using optparse), but before I can't even know what logging config file to load,

[issue3136] [PATCH] logging.config.fileConfig() compulsivly disable all existing loggers

2008-06-18 Thread Leandro Lucarella
New submission from Leandro Lucarella <[EMAIL PROTECTED]>: When using logging.config.fileConfig() in a large project, with several nested loggers, is very counterintuitive and annoying that this function disable all non-configured-via-fileConfig() loggers, because it forces the config f

[issue2295] cPickle corner case - docs or bug?

2008-06-16 Thread Leandro Lucarella
Leandro Lucarella <[EMAIL PROTECTED]> added the comment: I've noted that the problem goes away if I move the pymin/services/* directories (i.e., the packages in pymin/services) to another place (for example, a services directory in the root of the project). I still can't make

[issue2295] cPickle corner case - docs or bug?

2008-06-16 Thread Leandro Lucarella
Leandro Lucarella <[EMAIL PROTECTED]> added the comment: I'm having the same problem here. Error is: cPickle.PicklingError: Can't pickle qos.Device: it's not the same object as qos.Device If I use pickle module, it works fine. If I use cPickle module but with prot

[issue2954] [PATCH] Make bisect module functions accept an optional comparison callable

2008-05-30 Thread Leandro Lucarella
Leandro Lucarella <[EMAIL PROTECTED]> added the comment: Is there any way to find the duplicated issue to see the resolution and find out why it has been rejected? Thank you. ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue2954] [PATCH] Make bisect module functions accept an optional comparison callable

2008-05-23 Thread Leandro Lucarella
Leandro Lucarella <[EMAIL PROTECTED]> added the comment: A key argument (like list.sort) can be useful too (I can make a patch if you like). __ Tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue2954] [PATCH] Make bisect module functions accept an optional comparison callable

2008-05-23 Thread Leandro Lucarella
New submission from Leandro Lucarella <[EMAIL PROTECTED]>: bisect module functions should accept a comparison callable to customize the way items are compared to do the binary search. Attached is a patch to the Python implementation of bisect module. -- components: Library (Lib)

[issue2904] Cross-referencing to a method using an alternate title don't work with add_function_parentheses=True

2008-05-17 Thread Leandro Lucarella
New submission from Leandro Lucarella <[EMAIL PROTECTED]>: When using cross-references to a method using an alternate title, like :meth:`some title ` and configuration option add_function_parentheses is True, the link is not generated (if this option is False, it works fine. -- as