[issue11907] SysLogHandler can't send long messages

2014-11-10 Thread Domen Kožar

Domen Kožar added the comment:

Note: same bug is relevant to DatagramHandler since it uses UDP transport.

--
nosy: +iElectric

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue11907
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue7559] TestLoader.loadTestsFromName swallows import errors

2014-11-03 Thread Domen Kožar

Domen Kožar added the comment:

Could we backport this one to 3.x and 2.7? It's leads to really bad UX.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue7559
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue7559] TestLoader.loadTestsFromName swallows import errors

2013-03-27 Thread Domen Kožar

Domen Kožar added the comment:

One relevant use case is the following: 
https://github.com/Pylons/venusian/issues/23

Here the module is supposed to raise an ImportError.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue7559
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue7559] TestLoader.loadTestsFromName swallows import errors

2013-03-26 Thread Domen Kožar

Domen Kožar added the comment:

What can I do to put this forward? It's still an issue in py2.7

--
nosy: +iElectric

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue7559
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue14621] Hash function is not randomized properly

2013-01-01 Thread Domen Kožar

Domen Kožar added the comment:

According to talk at 29c3: 
http://events.ccc.de/congress/2012/Fahrplan/events/5152.en.html

Quote: We also describe a vulnerability of Python's new randomized hash, 
allowing an attacker to easily recover the 128-bit secret seed. As a reliable 
fix to hash-flooding, we introduce SipHash, a family of cryptographically 
strong keyed hash function competitive in performance with the weak hashes, and 
already adopted in OpenDNS, Perl 5, Ruby, and in the Rust language.

--
nosy: +iElectric

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue14621
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue16816] Bug in hash randomization

2012-12-30 Thread Domen Kožar

Domen Kožar added the comment:

I believe this is not the case, I have updated example to use ordereddict, same 
effect:

https://gist.github.com/4409304

--
resolution: invalid - 
status: closed - open

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue16816
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue16816] Bug in hash randomization

2012-12-30 Thread Domen Kožar

Domen Kožar added the comment:

That would mean there is a bug in OrderedDict, since iterator of item in 
OrderedDict should keep the order?

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue16816
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue16816] Bug in hash randomization

2012-12-30 Thread Domen Kožar

Domen Kožar added the comment:

Ah, works much better if you pass tuple to ordereddict. Seems like a bug in my 
program indeed (I was using ordereddict, but not correctly). 

Sorry for the noise!

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue16816
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue16816] Bug in hash randomization

2012-12-29 Thread Domen Kožar

New submission from Domen Kožar:

Script to reproduce the issue https://gist.github.com/4409304

--
components: Interpreter Core
messages: 178539
nosy: iElectric
priority: normal
severity: normal
status: open
title: Bug in hash randomization
type: behavior
versions: Python 3.3

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue16816
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue12234] unittest2 could enable regex debugging for more information

2011-06-04 Thread Domen Kožar

Domen Kožar ielect...@gmail.com added the comment:

I see, currently re module does not support debugging for matching a string. 
Even the upcoming new regex implementation does not support it.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue12234
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue12234] unittest2 could enable regex debugging for more information

2011-06-01 Thread Domen Kožar

New submission from Domen Kožar ielect...@gmail.com:

When using self.assertRegexpMatches, it would be useful to see where did the 
matching stop. Maybe using re module debugging flag?

--
components: Library (Lib)
messages: 137432
nosy: iElectric
priority: normal
severity: normal
status: open
title: unittest2 could enable regex debugging for more information
type: feature request
versions: Python 2.7

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue12234
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue9077] argparse does not handle arguments correctly after --

2010-06-28 Thread Domen Kožar

Domen Kožar ielect...@gmail.com added the comment:

I always used optparse like this, using the rargs (maybe this is not main 
intention, but worked so far):

 import optparse
 parser = optparse.OptionParser()
 parser.add_option('--test', action='store_true')
Option at 0x7f55bdb32dd0: --test
 parser.parse_args(['--test', 'foo', 'foo1', '--', 'foo2', 'foo3'])
(Values at 0x7f55bda89170: {'test': True}, ['foo', 'foo1', 'foo2', 'foo3'])
 parser.rargs
['foo2', 'foo3']
 parser.largs
['foo', 'foo1']

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue9077
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue9077] argparse does not handle arguments correctly after --

2010-06-25 Thread Domen Kožar

Domen Kožar ielect...@gmail.com added the comment:

I agree — not the best example, here is a better one explaining what behavior 
should not exist:

 parser = argparse.ArgumentParser()
 parser.add_argument('foobar', action='store')
 parser.add_argument('foobar2', nargs='?')
 parser.add_argument('foobar3', nargs='*')
 print parser.parse_args(['foo', '--', 'foo3', 'foo3'])
Namespace(foobar='foo', foobar2='foo3', foobar3=['foo3'])


I would expect both foo3 to be part of foobar3. This does not happen because of 
foobar2 argument eating zero or one argument. Arguments after -- should be left 
unparsed as such behavior was in optparse.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue9077
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue9077] argparse does not handle arguments correctly after --

2010-06-25 Thread Domen Kožar

Domen Kožar ielect...@gmail.com added the comment:

Optparse behaved like that, how would one get the same results with argparse? 
That is by having variable positional parameters to command. And at the same 
time stop at --.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue9077
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com