Re: [python-win32] a trivial question

2012-03-08 Thread Paul_Koning
You have a misplaced parenthesis. The working code has str (...Cell(...) ).split() and the failing code has str (...Cell(...).split() ) -in other words, the bad code has split() applied to the argument of str() rather than the result of str(). paul From: python-win32-bounces+pk

Re: [python-win32] Getting Error "Pure Virtual Function Call R6025" Error

2012-10-03 Thread Paul_Koning
I don't know how Windows C++ works, but with GCC this error almost always indicates you're using an object after it has been freed. The reason is that freeing the object calls the destructors in inheritance order, and changes the virtual method pointer table as it does so. The end result is a

Re: [python-win32] python-win32 Digest, Vol 116, Issue 13

2012-11-30 Thread Paul_Koning
On Nov 30, 2012, at 4:20 PM, Tim Roberts wrote: > In the future, I'd like to suggest that you choose a genuine subject > line when you post. It makes people more inclined to read your messages. > > > Michael Wilson wrote: >> >> My thought if there's not already an elegant solution in Python i

Re: [python-win32] python3 and extended mapi

2014-06-09 Thread Paul_Koning
On Jun 9, 2014, at 9:07 AM, Christian K. wrote: > Hi, > > I was very pleased to see that retrieving properties of a MAPI object yields > either a or type depending on whether the _A or _W property > was queried … Really? That seems strange. As I recall, the *_W APIs are “wide character” o

Re: [python-win32] python3 and extended mapi

2014-06-09 Thread Paul_Koning
On Jun 9, 2014, at 2:53 PM, Christian K. wrote: > Dell.com> writes: > >> >> >> On Jun 9, 2014, at 9:07 AM, Christian K. hoc.net> wrote: >> >>> Hi, >>> >>> I was very pleased to see that retrieving properties of a MAPI object yields >>> either a or type depending on whether the _A or _W

Re: [python-win32] python3 and extended mapi

2014-06-10 Thread Paul_Koning
On Jun 9, 2014, at 9:40 PM, Christian K. wrote: > Am 09.06.14 16:00, schrieb paul_kon...@dell.com: >> >> On Jun 9, 2014, at 2:53 PM, Christian K. wrote: >> >>> Dell.com> writes: >>> On Jun 9, 2014, at 9:07 AM, Christian K. hoc.net> wrote: > Hi, > > I was

Re: [python-win32] python3 and extended mapi

2014-06-23 Thread Paul_Koning
On Jun 14, 2014, at 10:10 AM, Christian K. wrote: >>> Dell.com> writes: >> I would only want/expect to see “bytes” types when the values in question >>> are binary data streams, or unknown format. But anytime we’re dealing with text strings, the Python 3 >>> approach is that the Py

Re: [python-win32] PyParallel - an experimental "multicore" fork of Python 3 for Windows

2015-08-01 Thread Paul_Koning
> On Jul 31, 2015, at 4:14 PM, Trent Nelson wrote: > > Hi folks, > > Bit off-topic, but just wanted to let people know about an experimental > proof-of-concept fork of Python 3 I've been working on for the past > couple of years called PyParallel: http://pyparallel.org. It essentially > gets a

Re: [python-win32] Something similar to py2exe for bundling python code into single file executables, using python 3.5.1?

2016-03-20 Thread Paul_Koning
I haven't tried py2exe with Python 3.5.1 specifically, but it works just fine with Python 3.4. Give it a try. paul ... AFAIK, py2exe isn't really usable with 3.5.1, as of yet? ___ python-win32 mailing list