Re: Pythos message

2017-03-10 Thread dieter
jorge.conr...@cptec.inpe.br writes: > I have a test script netcdf_example.py and I run it. I have my figures > on screen. But I had thse two emssages: > > > /usr/lib/python2.7/site-packages/setuptools-18.3.1-py2.7.egg/pkg_resources/__init__.py:1256: > UserWarning: /home/conrado/.python-eggs is w

Re: What's the neatest way of getting dictionary entries in a specified order?

2017-03-10 Thread Ethan Furman
On 03/10/2017 03:06 PM, Steve D'Aprano wrote: On Fri, 10 Mar 2017 08:53 pm, Ethan Furman wrote: On 03/10/2017 12:43 AM, Chris Green wrote: However how else can one describe an order which isn't 'sorted'? ... other than as the order one wants? I want the order to be the same as the order I e

Re: What's the neatest way of getting dictionary entries in a specified order?

2017-03-10 Thread Steve D'Aprano
On Fri, 10 Mar 2017 08:53 pm, Ethan Furman wrote: > On 03/10/2017 12:43 AM, Chris Green wrote: >> Erik wrote: >>> On 09/03/17 13:09, Chris Green wrote: Michael Torrie wrote: > On 03/08/2017 12:27 PM, Chris Green wrote: >> I have a fairly simple application that populates a GUI windo

Re: Where to find python GTK+ 3 reference documentation?

2017-03-10 Thread Chris Green
Michael Torrie wrote: > On 03/10/2017 01:26 PM, Chris Green wrote: > > Wildman wrote: > >> On Fri, 10 Mar 2017 18:51:35 +, Chris Green wrote: > >> > >>> I'm using the excellent tutorial at > >>> https://python-gtk-3-tutorial.readthedocs.io > >>> and occasionally want reference documentation,

Re: keyrings.cryptfile released on github

2017-03-10 Thread Paul Rubin
Hans-Peter Jansen writes: > [1] http://web.cs.ucdavis.edu/~rogaway/ocb/license.htm Oh that's interesting, he's expanded the free licenses. Still though, while OCB is very clever and it was important as the first satisfactory AEAD mode, I don't think it's that important these days. GCM is standa

Invitation to support our research (by responding to the questionnaire) on analogy based code reuse

2017-03-10 Thread maria . katic
At Birkbeck, University of London in collaboration with the Faculty of Electrical Engineering and Computing, University of Zagreb, we are doing research on reusing source code based on analogical reasoning. We appreciate the importance of your time and we hope you will be able to invest approx

Re: Where to find python GTK+ 3 reference documentation?

2017-03-10 Thread Michael Torrie
On 03/10/2017 01:26 PM, Chris Green wrote: > Wildman wrote: >> On Fri, 10 Mar 2017 18:51:35 +, Chris Green wrote: >> >>> I'm using the excellent tutorial at >>> https://python-gtk-3-tutorial.readthedocs.io >>> and occasionally want reference documentation, is there reference >>> documentation

Re: Where to find python GTK+ 3 reference documentation?

2017-03-10 Thread Liste guru
Il 10/03/2017 20:26, Wildman via Python-list ha scritto: On Fri, 10 Mar 2017 18:51:35 +, Chris Green wrote: I'm using the excellent tutorial at https://python-gtk-3-tutorial.readthedocs.io and occasionally want reference documentation, is there reference documentation for this on line? htt

Re: Where to find python GTK+ 3 reference documentation?

2017-03-10 Thread Chris Green
Wildman wrote: > On Fri, 10 Mar 2017 18:51:35 +, Chris Green wrote: > > > I'm using the excellent tutorial at > > https://python-gtk-3-tutorial.readthedocs.io > > and occasionally want reference documentation, is there reference > > documentation for this on line? > > https://developer.gnom

Re: Where to find python GTK+ 3 reference documentation?

2017-03-10 Thread Wildman via Python-list
On Fri, 10 Mar 2017 18:51:35 +, Chris Green wrote: > I'm using the excellent tutorial at > https://python-gtk-3-tutorial.readthedocs.io > and occasionally want reference documentation, is there reference > documentation for this on line? https://developer.gnome.org/gtk3/ -- GNU/Linux user

Where to find python GTK+ 3 reference documentation?

2017-03-10 Thread Chris Green
I'm using the excellent tutorial at https://python-gtk-3-tutorial.readthedocs.io and occasionally want reference documentation, is there reference documentation for this on line? -- Chris Green · -- https://mail.python.org/mailman/listinfo/python-list

Re: How to access installed scripts on Windows?

2017-03-10 Thread ddbug
On Monday, March 6, 2017 at 12:29:54 PM UTC+2, Paul Moore wrote: > On Sunday, 5 March 2017 22:26:17 UTC, eryk sun wrote: > > On Sun, Mar 5, 2017 at 2:35 AM, ddbug wrote: . Thank you Paul and Eryk for your replies. My goal is definitely to expose the Python to my users. I want t

Re: https://pygame.org/

2017-03-10 Thread Ian Kelly
On Fri, Mar 10, 2017 at 4:01 AM, René Dudfield wrote: > https://pygame.org/ Did you have a question, or something that you wish to discuss with regard to pygame? -- https://mail.python.org/mailman/listinfo/python-list

Pythos message

2017-03-10 Thread jorge . conrado
Hi, I have a test script netcdf_example.py and I run it. I have my figures on screen. But I had thse two emssages: /usr/lib/python2.7/site-packages/setuptools-18.3.1-py2.7.egg/pkg_resources/__init__.py:1256: UserWarning: /home/conrado/.python-eggs is writable by group/others and vulnerable

Acra, new open source database security suite for PostgreSQL

2017-03-10 Thread borysova . mary
Acra, new database security suite for PostgreSQL: https://github.com/cossacklabs/acra -- https://mail.python.org/mailman/listinfo/python-list

https://pygame.org/

2017-03-10 Thread René Dudfield
https://pygame.org/ -- https://mail.python.org/mailman/listinfo/python-list

Re: keyrings.cryptfile released on github

2017-03-10 Thread Hans-Peter Jansen
On Donnerstag, 9. März 2017 23:09:09 ng0 wrote: > Hans-Peter Jansen transcribed 3.8K bytes: > > Hi, > > > > since the PyCrypto ML is dead, I'm looking for advise/feedback from some > > cryptography aware people. > > > > I've released a keyring companion package today: > > https://github.com/f

Re: Unsubscribe to Python email list

2017-03-10 Thread Amit Yaron
On 10/03/17 04:38, Pablo Lozano wrote: Good day, I would like to unsubscribe this e-mail to the Python e-mail list. Kind regards You can set "Mail Delivery" to "disable" if you want to read posts on the Usenet, but not to receive e-mails. -- https://mail.python.org/mailman/listinfo/python-li

Re: What's the neatest way of getting dictionary entries in a specified order?

2017-03-10 Thread Ethan Furman
On 03/10/2017 12:43 AM, Chris Green wrote: Erik wrote: On 09/03/17 13:09, Chris Green wrote: Michael Torrie wrote: On 03/08/2017 12:27 PM, Chris Green wrote: I have a fairly simple application that populates a GUI window with fields from a database table. The fields are defined/configured

Re: What's the neatest way of getting dictionary entries in a specified order?

2017-03-10 Thread Chris Green
Erik wrote: > On 09/03/17 13:09, Chris Green wrote: > > Michael Torrie wrote: > >> On 03/08/2017 12:27 PM, Chris Green wrote: > >>> I have a fairly simple application that populates a GUI window with > >>> fields from a database table. The fields are defined/configured by a > >>> dictionary as f