Re: Reportlab / platypus bug?

2022-03-16 Thread Les
Greg Ewing ezt írta (időpont: 2022. márc. 16., Sze, 1:01): > On 16/03/22 2:20 am, Les wrote: > > I tried to subscribe (twice), but never got the confirmation > > email. Checked in the spam folder too, but it is nowhere to be found. > > Is there any chance your email p

Re: Reportlab / platypus bug?

2022-03-15 Thread Les
> > > > > as a test I subscribed under my private email address and the list > responded pretty quickly; the request confirmation > email ended up in spam though. I believe the list is a fairly old version > of mailman, but I don't have any access to the > server. > I tried again, and now I got

Re: Reportlab / platypus bug?

2022-03-15 Thread Les
Robin Becker ezt írta (időpont: 2022. márc. 15., K, 14:06): > > > Hi Les, so far as I know the reportlab-users list is still running it is > hosted (nad has been for many years) at > > > https://pairlist2.pair.net/mailman/listinfo/reportlab-users > > is that the addre

Re: Reportlab / platypus bug?

2022-03-15 Thread Les
Dennis Lee Bieber ezt írta (időpont: 2022. márc. 14., H 20:03): > On Mon, 14 Mar 2022 19:17:31 +0100, Les declaimed the > following: > > >Unfortunately, the reportlab-users mailing list is unavailable (I cannot > >subscribe). There is paid support but since I already

Re: Reportlab / platypus bug?

2022-03-14 Thread Les
Sensitive Business Data > > -Original Message- > From: Les > Sent: Sunday, March 13, 2022 4:56 PM > To: python-list@python.org > Subject: Reportlab / platypus bug? > > Hello, > > I have found an error, and I created a minimal working example. The > minimal working exampl

Re: Reportlab / platypus bug?

2022-03-14 Thread Les
Good point. I can confirm, that it works with copy.deepcopy. Probably you are right, the story is somehow consumed by doc.build. But it is not documented anywhere. I'm going to submit a bug report, thanks. -- https://mail.python.org/mailman/listinfo/python-list

Re: Reportlab / platypus bug?

2022-03-13 Thread Les
I will, thanks. I just wanted to make sure that this is a real bug, and not a mistake on my side. Barry ezt írta (időpont: 2022. márc. 13., V 23:29): > > > > On 13 Mar 2022, at 21:41, Les wrote: > > > > I have found an error, and I created a minimal working example. T

Reportlab / platypus bug?

2022-03-13 Thread Les
Hello, I have found an error, and I created a minimal working example. The minimal working example starts with the very first example from Platypus user guide: from reportlab.platypus import SimpleDocTemplate, Paragraph, Spacer from reportlab.lib.styles import getSampleStyleSheet from

Re: async serial port in Python.

2017-12-18 Thread Les Cargill
Les Cargill wrote: What I'd like to do is set up *some* sort of method in Python to asynchronously use callbacks to receive characters from a serial port or 20 serial ports. If I have to hook an event loop or even spawn a thread - fine! but it needs to allow for making things event-driven

async serial port in Python.

2017-12-18 Thread Les Cargill
ythonic, and I would accept that as an explanation. And no, I do not have a pet distro or version of Python. Any is fine with me. The Brent Welch book for Tcl has a totally complete example of this laid out in great detail. That's so 15-20 years ago - try to catch up, guys :) --

Re: [OT] Python and Excel

2017-12-18 Thread Les Cargill
siders-adding-python-as-an-official-scripting-language-to-excel/ -- https://mail.python.org/mailman/listinfo/python-list -- Les Cargill -- https://mail.python.org/mailman/listinfo/python-list

What is a mechanism equivalent to "trace variable w ..." in Tcl for Python?

2016-09-30 Thread Les Cargill
alent mechanism in Python? Thanks in advance. -- Les Cargill -- https://mail.python.org/mailman/listinfo/python-list

Re: Is Microsoft Windows secretly downloading childporn to your computer ?!

2015-12-02 Thread Les Cargill
isn't the hacker "downloading" things to your computer? --- news://freenews.netfront.net/ - complaints: n...@netfront.net --- Down is towards an end node; up is towards the backbone. Servers live closer to the backbone. Usually. Or rather did when the nomenclature was forged. -- Les

[issue22026] 2.7.8 ttk Button text display problem

2014-07-22 Thread Les Bothwell
Les Bothwell added the comment: In my example, the import statement can be removed (dammit) -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue22026

[issue22026] 2.7.8 ttk Button text display problem

2014-07-21 Thread Les Bothwell
New submission from Les Bothwell: My system: Windows 7 64 bit. Python 2.7.8 (32 bit) There's a problem with ttk button label text truncation when using large fonts on 2.7.8. 2.7.6 works Ok. With 2.7.6, increasing the font size in a ttk style makes the button large enough to display the text

[issue21665] 2.7.7 ttk widgets not themed

2014-06-05 Thread Les Bothwell
Les Bothwell added the comment: The code below shows a windows themed button with 2.7.6 but a plain tkinter button with 2.7.7. Functionality is Ok both cases. from win32api import GetMonitorInfo, MonitorFromWindow from win32con import MONITOR_DEFAULTTONEAREST from Tkinter import * import ttk

[issue21665] 2.7.7 ttk widgets not themed

2014-06-05 Thread Les Bothwell
Les Bothwell added the comment: Here's an even simpler example (from book: Modern Tkinter for busy python programmers). from Tkinter import * import ttk root = Tk() ttk.Button(root, text=Hello World!).grid() root.mainloop() I have screenshots of both progs for 2.7.6 and 2.7.7 if interested

[issue21665] 2.7.7 ttk widgets not themed

2014-06-04 Thread Les Bothwell
New submission from Les Bothwell: I developed a number of small apps using ttk in 2.7.6. After installing 2.7.7 all the ttk widgets look like standard Tkinter ones. I reverted to 2.7.6 and everything looks Ok again. (I tried reinstalling 2.7.7 again with the same result) Windows 7 X64 using

Re: any issues with long running python apps?

2010-07-16 Thread Les Schaffer
is Windows-only presently. but thinking about the issue some more as well as everyone's comments, have decided to proceed cautiously and let the client decide first that they really need this app regardless of guaranteed Windows-based uptime. Les -- http://mail.python.org/mailman/listinfo/python-list

Re: any issues with long running python apps?

2010-07-16 Thread Les Schaffer
Stefan Behnel wrote: Les Schaffer, 16.07.2010 15:07: agree with all the other suggestions: multiple threads for data and GUI, The way I read it, the suggestion was to use separate processes, not multiple threads. That's a pretty important difference. check. processes, not threads. Les

any issues with long running python apps?

2010-07-09 Thread Les Schaffer
is, we the developers? thanks Les -- http://mail.python.org/mailman/listinfo/python-list

Re: Reading data from a Microsoft Access 2003 database

2010-05-19 Thread Les Schaffer
://code.activestate.com/recipes/528868-extraction-and-manipulation-class-for-microsoft-ac/ Les -- http://mail.python.org/mailman/listinfo/python-list

Re: Reading data from a Microsoft Access 2003 database

2010-05-19 Thread Les Schaffer
Adam Tauno Williams wrote: The OP: I use Ubuntu 64 bit woops, my bad ... -- http://mail.python.org/mailman/listinfo/python-list

Re: [CentOS] App Question.

2008-10-15 Thread Les Mikesell
It is sort of java-oriented, but cruisecrontrol manages that sort of thing: http://cruisecontrol.sourceforge.net/index.html. -- Les Mikesell [EMAIL PROTECTED] -- http://mail.python.org/mailman/listinfo/python-list

Re: GC and security

2006-08-31 Thread Les Schaffer
information for the user. Les Schaffer -- http://mail.python.org/mailman/listinfo/python-list

Re: GC and security

2006-08-31 Thread Les Schaffer
suggestion of a secure string ;-) Les Schaffer -- http://mail.python.org/mailman/listinfo/python-list

Re: GC and security

2006-08-31 Thread Les Schaffer
the subprocess call, but it won't linger around once the for-loop has finished. good enough for current rock and roll. (don't forget to put a try/finally clause around the critical part) okey doky. Les Schaffer -- http://mail.python.org/mailman/listinfo/python-list

Re: GC and security

2006-08-31 Thread Les Schaffer
. need to get permission from PI on the project. thanks for the comments, they validate my concerns. if you know, or are, a pro in python and security, we might be able to manage a small consulting gig. but if its not python-relevant, lets talk offlist. in any case, many thanks. Les Schaffer

GC and security

2006-08-30 Thread Les Schaffer
to the passphrase string(s), eventually it gets garbage collected and the memory recycled. so before long the phrase is gone from memory. is there a best practice way to do this? thanks Les Schaffer -- http://mail.python.org/mailman/listinfo/python-list

Re: GC and security

2006-08-30 Thread Les Schaffer
-16.pdf i don't see a mention of swap files on there, but maybe i missed it. and the OMB doc exceeds the security level required by the client app. les schaffer -- http://mail.python.org/mailman/listinfo/python-list

Re: GC and security

2006-08-30 Thread Les Schaffer
, no? and i am curious how that works. it sounds like you are saying once a string, always the same string, in python. if thats true, i am glad i know that. Les Schaffer -- http://mail.python.org/mailman/listinfo/python-list

GPG.py adapted to use subprocess, for Windows?

2006-07-06 Thread Les Schaffer
ask here first. Thanks Les Schaffer -- http://mail.python.org/mailman/listinfo/python-list

Re: GPG.py adapted to use subprocess, for Windows?

2006-07-06 Thread Les Schaffer
Les Schaffer wrote: Does anyone know if the GPG.py module errr, THIS GPG module: http://www.historical-id.info/files/python/GPG.py Les -- http://mail.python.org/mailman/listinfo/python-list

Re: GPG.py adapted to use subprocess, for Windows?

2006-07-06 Thread Les Schaffer
Les Schaffer wrote: errr, THIS GPG module: http://www.historical-id.info/files/python/GPG.py sigh, actually its updated version: http://trac.t7a.org/isconf/browser/trunk/lib/python/isconf/GPG.py looks like i can use the subprocess module straight instead of the PopenHI, except

Re: Clueless with cPickle

2005-05-08 Thread les
OK, looks like it is time for a break! Thanks for the replies! -- http://mail.python.org/mailman/listinfo/python-list

Clueless with cPickle

2005-05-08 Thread les
with the following: Traceback (most recent call last): File /home/les/workspace/Module 2/questor.py, line 18, in ? f = file(questorlistfile) NameError: name 'questorlistfile' is not defined I thought that I had defined questorlistfile on the 4th line below # define some constants for future use

Python/Rexx Interface Now Available

2005-02-20 Thread les
A Python Rexx Interface is now available to allow Python scripting to access REXX libraries and utilities. See http://www.lestec.com.au for details Regards, Les -- http://mail.python.org/mailman/listinfo/python-list