Re: Tkinter on Mac OS crashes python

2019-05-14 Thread Terry Reedy
On 5/14/2019 1:22 PM, Chip Towner wrote: I am trying to use tkinter and when I attempt to do so Python crashes. I am accessing Python (v 3.6.8) in Spyder (v3.6) from Anaconda. The version of TkVersion tells me the version is 8.6 and the Anaconda environment browser tells me it is 8.6.8. Be

Re: Tkinter on Mac OS crashes python

2019-05-14 Thread Terry Reedy
On 5/14/2019 9:27 PM, Wildman via Python-list wrote: On Tue, 14 May 2019 11:22:54 -0600, Chip Towner wrote: I am trying to use tkinter and when I attempt to do so Python crashes. I am accessing Python (v 3.6.8) in Spyder (v3.6) from Anaconda. The version of TkVersion tells me the version is

Re: Tkinter on Mac OS crashes python

2019-05-14 Thread Chris Angelico
On Wed, May 15, 2019 at 11:13 AM Chip Towner wrote: > > I am trying to use tkinter and when I attempt to do so Python crashes. I am > accessing Python (v 3.6.8) in Spyder (v3.6) from Anaconda. The version of > TkVersion tells me the version is 8.6 and the Anaconda environment browser > tells

Re: Tkinter on Mac OS crashes python

2019-05-14 Thread Wildman via Python-list
On Tue, 14 May 2019 11:22:54 -0600, Chip Towner wrote: > I am trying to use tkinter and when I attempt to do so Python crashes. I am > accessing Python (v 3.6.8) in Spyder (v3.6) from Anaconda. The version of > TkVersion tells me the version is 8.6 and the Anaconda environment browser > tells

Tkinter on Mac OS crashes python

2019-05-14 Thread Chip Towner
I am trying to use tkinter and when I attempt to do so Python crashes. I am accessing Python (v 3.6.8) in Spyder (v3.6) from Anaconda. The version of TkVersion tells me the version is 8.6 and the Anaconda environment browser tells me it is 8.6.8. An example piece of code I am trying to run (p

Re: Help? How do i solve this problem with Python List Concept

2019-05-14 Thread Peter J. Holzer
On 2019-05-11 22:02:39 +0100, Ben Bacarisse wrote: > Donald Tripdarlinq writes: > > In the traditional Yoruba tribal Set-Up in Nigeria,West Africa the > > tradition of inheritance is very important. Now, The relative position > > of a child in the family counts when the issue of inheritance is > >

Re: convert .py to Android ?

2019-05-14 Thread Eli the Bearded
In comp.lang.python, Ben Finney wrote: > "Steve" writes: >> I have a working .py program >> that I want to get into my Android Moto G phone. > To my knowledge, an Android app must be implemented, at some level, in > Java and specifically linked to Android Java libraries. That's a hard > limitati

Re: not working

2019-05-14 Thread Igor Korot
On Tue, May 14, 2019 at 11:45 AM Grant Edwards wrote: > > On 2019-05-14, Zacharia Khan wrote: > > > python is not working for me can you help fix it "Help" given. Thank you. > > Yes. > > -- > Grant Edwards grant.b.edwardsYow! Hello, GORRY-O!! >

RE: PYTHONHASHSEED VALUE

2019-05-14 Thread David Raymond
What is the test case actually checking for, and why? One of the main aspects of a set is that it's unordered. So something checking to make sure the order of an unordered object is some static value seems like it's testing for the wrong thing. -Original Message- From: Python-list [ma

Re: not working

2019-05-14 Thread Grant Edwards
On 2019-05-14, Zacharia Khan wrote: > python is not working for me can you help fix it Yes. -- Grant Edwards grant.b.edwardsYow! Hello, GORRY-O!! at I'm a GENIUS from HARVARD!! gmail.com

ANN: distlib 0.2.9 released on PyPI

2019-05-14 Thread Vinay Sajip via Python-list
I've recently released version 0.2.9 of distlib on PyPI [1]. For newcomers,distlib is a library of packaging functionality which is intended to beusable as the basis for third-party packaging tools. The main changes in this release are as follows: * Updated default PyPI URL to https://pypi.org/py

PYTHONHASHSEED VALUE

2019-05-14 Thread Rishabh Mishra
Dear Sir/Ma'am, I was upgrading a codebase from python2 to python3. The testcases fail in python3 code because the set() function produces a different order from python2. e.g. set in py2 ={"it","is","rishabh","Mishra"} Here in python 2.7 the PYTHONHASHSEED is disabled. in py3 set ={"rishabh","i

PYTHONHASHSEED VALUE

2019-05-14 Thread Rishabh Mishra
Dear Sir/Ma'am, I was upgrading a codebase from python2 to python3. The testcases fail in python3 code because the set() function produces a different order from python2. e.g. set in py2 ={"it","is","rishabh","Mishra"} Here in python 2.7 the PYTHONHASHSEED is disabled. in py3 set ={"rishabh","i

not working

2019-05-14 Thread Zacharia Khan
python is not working for me can you help fix it -- https://mail.python.org/mailman/listinfo/python-list

[Project Announcement] tglogger: Sending Live Logging Records to A Python Chat

2019-05-14 Thread Eray Erdin
I hereby announce my new project called tglogger to Python community. Check it out here . *What It Does* tglogger contains custom handler and formatter implementations in order to send logging records directly to a chat, which means you get logging feed from

Re: help plz

2019-05-14 Thread Mario R. Osorio
On Monday, May 13, 2019 at 8:32:38 AM UTC-4, Tristan Cribaro wrote: > [image: image.png]so I have a project I have to work on that is due > tomorrow for a lot of points towards my grade. The issue here is I've been > trying to download Pillow and simple audio for my project and I keep > getting the

Re: Most "pythonic" syntax to use for an API client library

2019-05-14 Thread Dotan Cohen
I highly recommend going with the last approach. With the last approach you can pass around objects in proper OOP fashion. This will be familiar to most contributors to your project and most devs that you hire. foo = api.customers(1) if bar==baz: foo.update(Name='Leroy') else: foo.delete(

Re: convert .py to Android ?

2019-05-14 Thread Ben Finney
"Steve" writes: > I have a working .py program (Do you mean a Python program? Or something different?) > that I want to get into my Android Moto G phone. To my knowledge, an Android app must be implemented, at some level, in Java and specifically linked to Android Java libraries. That's a hard

Re: Most "pythonic" syntax to use for an API client library

2019-05-14 Thread Jonathan Leroy - Inikup via Python-list
Le dim. 28 avr. 2019 à 20:58, Jonathan Leroy - Inikup a écrit : > Which of the following syntax do you expect an API client library to > use, and why? Thank you all for your feedbacks! I will go with #2. Le lun. 29 avr. 2019 à 05:43, DL Neil a écrit : > Doesn't the framework you are using have