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
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
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
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
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
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
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
> 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
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