Re: OT: This Swift thing

2014-06-17 Thread Bob Martin
in 723903 20140617 121638 alister wrote: >On Tue, 17 Jun 2014 08:34:13 +1000, Chris Angelico wrote: > >> >> Partly that. But also, people want to know how long that will *really* >> last. For instance, 10 hours of battery life... doing what? Can I really >> hop on a

Re: Generate Single PowerPoint from two powerpoints using pywin32(python)

2014-06-17 Thread Jaydeep Patil
On Tuesday, 17 June 2014 11:50:38 UTC+5:30, Jaydeep Patil wrote: > Hi, > > > > I have two powerpoints, which consists of images in each slide. > > I need to read each powerpoint, copy images from both powerpoint & paste > these images into output powerpoint side by side. > > > > How shoul

Re: Create flowcharts from Python

2014-06-17 Thread Miki Tebeka
> Is there a library for Python that can easily create flowcharts using a > simple API? Maybe https://code.google.com/p/pydot/ ? -- https://mail.python.org/mailman/listinfo/python-list

Re: Backport fix on #16611 to Python 2.7

2014-06-17 Thread Terry Reedy
On 6/17/2014 9:08 PM, Mark Lawrence wrote: On 18/06/2014 01:56, Makoto Kuwata wrote: Hi, I found a bug on SimpleCookie#load() which doesn't parse 'secure' and 'httponly' attributes correctly. try: from Cookie import SimpleCookie except: from http.cookies import Simp

Re: Create flowcharts from Python

2014-06-17 Thread alex23
On 18/06/2014 1:32 AM, Nagy László Zsolt wrote: Is there a library for Python that can easily create flowcharts using a simple API? The diagram application Dia comes with a Python API: https://wiki.gnome.org/Apps/Dia/Python -- https://mail.python.org/mailman/listinfo/python-list

Re: Backport fix on #16611 to Python 2.7

2014-06-17 Thread Mark Lawrence
On 18/06/2014 01:56, Makoto Kuwata wrote: Hi, I found a bug on SimpleCookie#load() which doesn't parse 'secure' and 'httponly' attributes correctly. try: from Cookie import SimpleCookie except: from http.cookies import SimpleCookie ck = SimpleCookie() ck.lo

Backport fix on #16611 to Python 2.7

2014-06-17 Thread Makoto Kuwata
Hi, I found a bug on SimpleCookie#load() which doesn't parse 'secure' and 'httponly' attributes correctly. try: from Cookie import SimpleCookie except: from http.cookies import SimpleCookie ck = SimpleCookie() ck.load('name1=value1; Path=/xxx; httponly; secure')

Re: Python Noob, open file dialog

2014-06-17 Thread MRAB
On 2014-06-17 17:49, cutey Love wrote: My first attempt at Python, I'm using Tkinter and all is going well except when I'm using file_path = tkFileDialog.askopenfilename() print "test" opens great and lets me select a file, the problem is it then pauses? instead of continuing with t

Python Noob, open file dialog

2014-06-17 Thread cutey Love
My first attempt at Python, I'm using Tkinter and all is going well except when I'm using file_path = tkFileDialog.askopenfilename() print "test" opens great and lets me select a file, the problem is it then pauses? instead of continuing with the function? until I close, then it goes a

Create flowcharts from Python

2014-06-17 Thread Nagy László Zsolt
Is there a library for Python that can easily create flowcharts using a simple API? I have a set of business rules that can be represented by a flowchart. These rules are stored in a database, and I need to display them for the end user. It is not a fixed set of rules, the users are going to

ANN: driver to convert LaTeX math to MathML, using Tralics

2014-06-17 Thread Tim
This is an announcement of a python driver to convert LaTeX math snippets to MathML (tralics_driver, MIT license). It may be of interest to Python developers who work with LaTeX and MathML. There are several tools to convert LaTeX math to MathML; this tool is a driver that uses Tralics: Tralic

State of Nuitka

2014-06-17 Thread Mark Lawrence
I thought this might be of interest http://nuitka.net/posts/state-of-nuitka.html -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence --- This email is free from viruses and malware because avast! Antivirus protection is act

Re: OT: This Swift thing

2014-06-17 Thread alister
On Tue, 17 Jun 2014 08:34:13 +1000, Chris Angelico wrote: > > Partly that. But also, people want to know how long that will *really* > last. For instance, 10 hours of battery life... doing what? Can I really > hop on a plane for ten hours and write code the whole way without > external power? Or

ANN: eGenix PyRun - One file Python Runtime 2.0.0

2014-06-17 Thread eGenix Team: M.-A. Lemburg
ANNOUNCING eGenix PyRun - One file Python Runtime Version 2.0.0 An easy-to-use single file relocatable Python run-time - available for Linux, Mac OS X and U

Re: line to argv transformation

2014-06-17 Thread Antoon Pardon
On 16-06-14 13:09, Chris Angelico wrote: > On Mon, Jun 16, 2014 at 8:51 PM, Tim Chase > wrote: >> On 2014-06-16 20:41, Chris Angelico wrote: >>> Oops! I made the cardinal error of trying in one and assuming it'd >>> work in both. Just needs a b prefix on the split string: >>> >>> def shell_split(c

Re: Question about asyncio

2014-06-17 Thread Frank Millman
"Ian Kelly" wrote in message news:CALwzidmzG_WA5shw+PS4Y976M4DVTOwE=zb+kurvcpj3n+5...@mail.gmail.com... > On Fri, Jun 13, 2014 at 5:42 AM, Frank Millman wrote: >> Now I want to use the functionality of asyncio by using a 'yield from' to >> suspend the currently executing function at a particula