hexdump module installation error

2019-12-18 Thread tommy yama
Hi, This sounds familiar to somebody? After upgrading my mac OS to Catalina, this persists even after pip3 install hexdump. [image: image.png] thanks. -- https://mail.python.org/mailman/listinfo/python-list

This is the email address I Believe I should email for support.

2019-12-18 Thread Anthony Graziano
When I try to uninstall python 3.8.0 to reinstall, it says that the program is currsntly running.   Please help   Sent from [1]Mail for Windows 10   References Visible links 1. https://go.microsoft.com/fwlink/?LinkId=550986 -- https://mail.python.org/mailman/listi

Re: This is the email address I Believe I should email for support.

2019-12-18 Thread Igor Korot
Hi, On Wed, Dec 18, 2019 at 7:03 AM Anthony Graziano wrote: > >When I try to uninstall python 3.8.0 to reinstall, it says that the >program is currsntly running. Why do you want to reinstall it? Does python interpreter actually running? Can you go to the "Task Manager" and see it punning

Re: hexdump module installation error

2019-12-18 Thread Rhodri James
On 18/12/2019 02:23, tommy yama wrote: Hi, This sounds familiar to somebody? After upgrading my mac OS to Catalina, this persists even after pip3 install hexdump. [image: image.png] I'm afraid this is a text-only mailing list. Your screenshot has been stripped out before any of us saw it.

Re: 3rd party mail package

2019-12-18 Thread Tobiah
On 12/18/19 9:27 AM, Tobiah wrote: On 12/14/19 1:13 AM, Barry wrote: I guess the 2nd party is the user. I think of the user as the first party. 1) I want a thing for python. 2) Python doesn't have a very good one 3) Someone else will give it to you Wikipedia disagrees with me: https://

Re: 3rd party mail package

2019-12-18 Thread Tobiah
On 12/14/19 1:13 AM, Barry wrote: I guess the 2nd party is the user. I think of the user as the first party. 1) I want a thing for python. 2) Python doesn't have a very good one 3) Someone else will give it to you Barry On 13 Dec 2019, at 21:13, Abdur-Rahmaan Janhangeer wrote: Wond

Re: strptime for different languages

2019-12-18 Thread Tobiah
What I tried is a cascade of try's: try: d = strptime(date_string, format_string_1) except: try: d = strptime(date_string, format_string_2) except: try: d = strptime(date_string, format_string_3) except: ... This is not about dates, but for the above, I'd

Re: 3rd party mail package

2019-12-18 Thread Barry
> On 18 Dec 2019, at 17:33, Tobiah wrote: > > On 12/14/19 1:13 AM, Barry wrote: >> I guess the 2nd party is the user. > > I think of the user as the first party But that is not what Wikipedia article you linked says. “ In commerce, a "third-party source" means a supplier (or service provide

Re: 3rd party mail package

2019-12-18 Thread Tobiah
I think of the user as the first party But that is not what Wikipedia article you linked says. “ In commerce, a "third-party source" means a supplier (or service provider) who is not directly controlled by either the seller (first party) nor the customer/buyer (second party) in a business tra

Re: strptime for different languages

2019-12-18 Thread MRAB
On 2019-12-18 18:12, Tobiah wrote: What I tried is a cascade of try's: try: d = strptime(date_string, format_string_1) except: try: d = strptime(date_string, format_string_2) except: try: d = strptime(date_string, format_string_3) except: ... This is not

Re: strptime for different languages

2019-12-18 Thread Tobiah
A couple of point about your code: 1. Don't use a bare 'except' because it'll catch _any_ exception. See what exception strptime will raise and catch only that. I'm well aware of this, but I was too lazy to write something to generate the exception to find out what datetime would throw in th

Re: 3rd party mail package

2019-12-18 Thread Terry Reedy
On 12/18/2019 12:29 PM, Tobiah wrote: On 12/18/19 9:27 AM, Tobiah wrote: On 12/14/19 1:13 AM, Barry wrote: I guess the 2nd party is the user. I think of the user as the first party. 1) I want a thing for python. 2) Python doesn't have a very good one 3) Someone else will give it to you W

INHERITANCE in python3

2019-12-18 Thread vahid asadi via Python-list
HI guys this is my first post on python mailing lists ever and i glad to do this. my problem here is why this attribute is not recognize by python and it raise an traceback error that said 'there is no such p.family attribute'. although i use multiple   inheritance with 'super ' it not works. th

Re: INHERITANCE in python3

2019-12-18 Thread Random832
On Wed, Dec 18, 2019, at 23:10, vahid asadi via Python-list wrote: > HI guys this is my first post on python mailing lists ever and i glad > to do this. > my problem here is why this attribute is not recognize by python and it > raise an traceback error that said 'there is no such p.family > att

Using generators in Django

2019-12-18 Thread onlinejudge95
Hi Devs, A quick question. I am using Django to schedule some commands to populate my PostgreSQL(Apart from using it as a web framework). I am currently fetching records from a particular table and for each of those records doing some calculation and storing the processed data in some other databa

Re: Using generators in Django

2019-12-18 Thread Chris Angelico
On Thu, Dec 19, 2019 at 5:34 PM onlinejudge95 wrote: > > Hi Devs, > > A quick question. I am using Django to schedule some commands to populate > my PostgreSQL(Apart from using it as a web framework). I am currently > fetching records from a particular table and for each of those records > doing s

on sorting things

2019-12-18 Thread Eli the Bearded
I recently saw a link to an old post on a blog and then started looking at the newer posts. This one: https://leancrew.com/all-this/2019/11/the-key-to-sorting-in-python/ discusses ways to deal with useful sorting of movie / television show titles. Some initial words should be re-ordered for sorti

Re: on sorting things

2019-12-18 Thread Oscar Benjamin
On Thu, 19 Dec 2019 at 07:37, Eli the Bearded <*@eli.users.panix.com> wrote: > ... > But what caught my eye most, as someone relatively new to Python but > with long experience in C in Perl, is sorting doesn't take a > *comparison* function, it takes a *key generator* function, and that > function