[issue36426] exec() issue when used inside function

2019-03-30 Thread Domen Jurkovič
Domen Jurkovič added the comment: Are there any workarounds - how can we use exec() and on-the-fly created variables? Also, why 'locals()['bar']' is seen by the interpretter, but not ony 'bar'? -- ___ Python tracker <https://bugs.python.

[issue36426] exec() issue when used inside function

2019-03-25 Thread Domen Jurkovič
Domen Jurkovič added the comment: Seems like I don't know how to write a code here. Anyway, issue created on stack overflow can be found on: https://stackoverflow.com/questions/55239875/python-exec-function-broken-in-versions-above-2-7-error-name-not-defined/5524?noredirect=1

[issue36426] exec() issue when used inside function

2019-03-25 Thread Domen Jurkovič
New submission from Domen Jurkovič : I've reported a stack overflow question and no reasonable explation was offered. Here is what I've discovered: .. code-block:: python def func(): varName = 'bar' varValue = 42 localVarToEvaluate = varName + ' = varValue

[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

[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

[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

[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

[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

[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

[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

[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

[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

[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

[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

[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

[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

[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

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

2010-06-24 Thread Domen
New submission from Domen ielect...@gmail.com: Sample code: parser = argparse.ArgumentParser() parser.add_argument('-v', action='store_true') parser.add_argument('foo') parser.parse_args(['-v', '--', '--foo']) Namespace(foo='--foo', v=True) parser = argparse.ArgumentParser

[issue8489] smtplib.SMTP.login() breaks with unicode input

2010-04-21 Thread Domen
New submission from Domen ielect...@gmail.com: Module smtplib, line 574, in login Module smtplib, line 538, in encode_cram_md5 Module hmac, line 72, in __init__ TypeError: character mapping must return integer, None or unicode Following traceback occurs when doing connection.login(u'foo

[issue8489] smtplib.SMTP.login() breaks with unicode input

2010-04-21 Thread Domen
Domen ielect...@gmail.com added the comment: Plone currently just passes unicode data around, maybe additional documentation note will do for avoiding such trobules. Thanks for quick response. -- ___ Python tracker rep...@bugs.python.org http

[issue2054] add ftp-tls support to ftplib - RFC 4217

2009-12-07 Thread Domen
Domen ielect...@gmail.com added the comment: Nice! Any chance of merging with 2.7? Python3.2 is waaay too far in future for such useful change to be actually useful. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2054

[issue5672] Implement a way to change the python process name

2009-11-14 Thread Domen
Changes by Domen ielect...@gmail.com: -- nosy: +iElectric ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5672 ___ ___ Python-bugs-list mailing list

[issue2054] add ftp-tls support to ftplib - RFC 4217

2009-10-25 Thread Domen
Domen ielect...@gmail.com added the comment: What about AUTH SSL? Or is it too-deprecated? -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2054

[issue2054] add ftp-tls support to ftplib - RFC 4217

2008-03-17 Thread Domen
Domen [EMAIL PROTECTED] added the comment: The lib should give programmer choice wether to send login through TLS or not. (as it is described in RFC 4217). Also, there should be an optional parameter to specify port for ftp connection. -- nosy: +iElectric