Re: Python Issue

2023-06-21 Thread dn via Python-list
On 22/06/2023 03.28, Pickle Pork via Python-list wrote: Python is unable to open. Exit Code: 1 This is not good. Please give some useful information: - from where did you download Python? - which operating system? - how do you "open" Python? etc. -- Regards, =dn --

Python Issue

2023-06-21 Thread Pickle Pork via Python-list
Python is unable to open. Exit Code: 1 -- https://mail.python.org/mailman/listinfo/python-list

Re: Idle Python issue

2021-02-24 Thread Terry Reedy
On 2/24/2021 5:32 AM, jak wrote: Hello everybody, I encounter a problem using Idle Python in Windows when I use utf8 characters longer than 2 bytes such as the character representing the smile emoticon: The problem is with 'astral' unicode characters, those not in the Basic Multilingual

Idle Python issue

2021-02-24 Thread jak
Hello everybody, I encounter a problem using Idle Python in Windows when I use utf8 characters longer than 2 bytes such as the character representing the smile emoticon: :-) that is this:  Try to write this in Idle: "".encode('utf8') b'\xf0\x9f\x98\x8a' now try to write this:

Re: Python issue on Win64

2018-04-14 Thread MRAB
On 2018-04-14 03:19, Jatin Rajpura wrote: Hi Team, I am having an issue with Python on win 64, could you help me here? Installed: [cid:image001.png@01D3D1A6.6108F670] CMD doesn't work: [cid:image002.png@01D3D1A6.6108F670] Regards, Jatin Rajpura This is a text-only list;

Python issue on Win64

2018-04-14 Thread Jatin Rajpura
Hi Team, I am having an issue with Python on win 64, could you help me here? Installed: [cid:image001.png@01D3D1A6.6108F670] CMD doesn't work: [cid:image002.png@01D3D1A6.6108F670] Regards, Jatin Rajpura AWS Engineer | E1 Technology | EF Kids & Teens | Education First 3F Jiu

Embedded python issue with gtk

2010-11-10 Thread Oliver Marks
I have already emailed about this issue, but have still not got any where. I have reduced the plugin down to its bare minimum it simple loads the the python interpreter and imports gtk library. If i do this outside the embedded python it imports and i can use the gtk library, so why does it not

[issue1773] Reference to Python issue tracker incorrect

2008-01-09 Thread albert hofkamp
by the one at http://bugs.python.org/ -- components: Documentation messages: 59587 nosy: aioryi severity: normal status: open title: Reference to Python issue tracker incorrect versions: Python 2.5 __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1773

[issue1773] Reference to Python issue tracker incorrect

2008-01-09 Thread A.M. Kuchling
A.M. Kuchling added the comment: Fixed in rev. 57394 of the 2.5 branch; thanks for reporting this! The web site's copy of the documentation will be updated when Python 2.5.2 is released. -- assignee: - akuchling nosy: +akuchling resolution: - fixed status: open - closed

Boost Python Issue

2006-08-31 Thread JDJMSon
I was wondering if someone here could help me with a problem I'm having building Python extensions with the Boost.Python library. Basically, if I have a wrapper class with something like this: string TestFunc() { return Hello World; } BOOST_PYTHON_MODULE(TestClass) {

Re: Boost Python Issue

2006-08-31 Thread [EMAIL PROTECTED]
I believe this is more of a tools/compiler issue than a coding issue. If you are using the pre-built BOOST.Python library you get compile mismatches. I am not a Windows Visual Studio programmer (barely a programmer), I am probably not using the correct terminology. There are some settings for

Re: Boost Python Issue

2006-08-31 Thread Neal Becker
JDJMSon wrote: I was wondering if someone here could help me with a problem I'm having building Python extensions with the Boost.Python library. Basically, if I have a wrapper class with something like this: string TestFunc() { return Hello World; } BOOST_PYTHON_MODULE(TestClass) {

Re: Boost Python Issue

2006-08-31 Thread JDJMSon
Neal Becker wrote: Shouldn't that be: .def(TestFunction,TestClass::TestFunction) ; Yes, you're right, but I'm still getting the error. I'm using a prebuilt python library, so later I'm going to rebuild python myself and see if that helps, as has been suggested. Thanks. --

Re: Boost Python Issue

2006-08-31 Thread Neal Becker
JDJMSon wrote: Neal Becker wrote: Shouldn't that be: .def(TestFunction,TestClass::TestFunction) ; Yes, you're right, but I'm still getting the error. I'm using a prebuilt python library, so later I'm going to rebuild python myself and see if that helps, as has been suggested.

Re: Tkinter or Python issue?

2005-10-19 Thread Eric Brunel
On Tue, 18 Oct 2005 22:30:33 -0400, Ron Provost [EMAIL PROTECTED] wrote: Hello, I'm using python 2.4.2 on Win XP Pro. I'm trying to understand a behavior I'm seeing in some Tkinter code I have. I've reduced my question to a small piece of code: #BEGIN CODE # import

Re: Tkinter or Python issue?

2005-10-19 Thread Fredrik Lundh
Eugene Druker wrote: tkFont.Font(...) is a class instance, while you need font description. Font instances are font descriptors. f = tkFont.Font(family=ariel, size=24, weight=tkFont.BOLD) f tkFont.Font instance at 0x00A3AC60 print f font10726496 t.tag.config( 'TBU',

Re: Tkinter or Python issue?

2005-10-19 Thread Russell E. Owen
In article [EMAIL PROTECTED], Eric Brunel [EMAIL PROTECTED] wrote: You should now see why it works here: your first tkFont.Font is remembered at Python level in a variable. So it is not discarded once the tag_config is over. So the second tkFont.Font is not allocated at the same location, so

Tkinter or Python issue?

2005-10-18 Thread Ron Provost
Hello, I'm using python 2.4.2 on Win XP Pro. I'm trying to understand a behavior I'm seeing in some Tkinter code I have. I've reduced my question to a small piece of code: #BEGIN CODE # import Tkinter as Tk import tkFont sampleText = Here is a test string. This is more

Re: Tkinter or Python issue?

2005-10-18 Thread Eugene Druker
Ron Provost [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] [snip] t.insert( Tk.END, sampleText ) t.tag_config( 'AB', font=tkFont.Font( family='ariel', size=24, weight=tkFont.BOLD ) ) t.tag_config( 'TBU', font=tkFont.Font( family='times', size=10, weight=tkFont.BOLD, underline=1

Outlook-Python Issue

2005-05-07 Thread Vijay Chandra Sekhar Parepalli
Hi there, Can any one please help in getting me Python-Outlook programming issue clarified. I just wanted to do the following using Python: 1)Open a New Oulook Mail Window 2) Fill the field: to-email address and Write some body to it.(I DONt want to send it automatically) Thats