New submission from Domen :
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...@domai
Domen 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
<http://bugs.python.org/issue8
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: +iEl
Domen added the comment:
What about AUTH SSL? Or is it too-deprecated?
--
___
Python tracker
<http://bugs.python.org/issue2054>
___
___
Python-bugs-list mailin
Changes by Domen :
--
nosy: +iElectric
___
Python tracker
<http://bugs.python.org/issue5672>
___
___
Python-bugs-list mailing list
Unsubscribe:
http://mail.pyth
Domen 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
<http://bugs.python.org/issue2
New submission from Domen :
Sample code:
>>> parser = argparse.ArgumentParser()
>>> parser.add_argument('-v', action='store_true')
>>> parser.add_argument('foo')
>>> parser.parse_args(['-v', '--
New submission from Domen Kožar :
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
Domen Kožar 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
<http://bugs.python.org/issue12
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 = va
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?noredir
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 tra
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
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
<http://bugs.p
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
<http://bugs.python.org/issue16
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
<http://bugs.python.
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
Domen Kožar 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_argumen
Domen Kožar 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
<h
Domen Kožar 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')
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
<http://bugs.python.org/i
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
<http://bugs.python.org/issue7
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
<http://bugs.python.org/i
Domen Kožar added the comment:
Note: same bug is relevant to DatagramHandler since it uses UDP transport.
--
nosy: +iElectric
___
Python tracker
<http://bugs.python.org/issue11
24 matches
Mail list logo