Re: how to specify trusted hosts in windows config file

2020-03-30 Thread Chris Angelico
On Tue, Mar 31, 2020 at 8:21 AM wrote: > > On Monday, March 30, 2020 at 2:49:55 PM UTC-4, Chris Angelico wrote: > > On Tue, Mar 31, 2020 at 5:46 AM dc wrote: > > > > > > These are some of the command lines I've typed, and the results. It > > > looks like it's going to https://pypi.org. > > > > >

Re: Confusing textwrap parameters, and request for RE help

2020-03-30 Thread Chris Angelico
On Tue, Mar 31, 2020 at 8:20 AM Peter Otten <__pete...@web.de> wrote: > > Chris Angelico wrote: > > but an awkward way to spell it. If you mean to call the original wrap > > method, it would normally be spelled super().wrap(para) instead. > > Probably a workaround because super() cannot do its magi

Re: how to specify trusted hosts in windows config file

2020-03-30 Thread dcwhatthe
On Monday, March 30, 2020 at 2:49:55 PM UTC-4, Chris Angelico wrote: > On Tue, Mar 31, 2020 at 5:46 AM dc wrote: > > > > These are some of the command lines I've typed, and the results. It looks > > like it's going to https://pypi.org. > > > > I have no idea whether that's correct, or not. > > >

Re: Confusing textwrap parameters, and request for RE help

2020-03-30 Thread Peter Otten
Chris Angelico wrote: [Steve] >>>def wrap(self, text): >>>split_text = text.split('\n') >>>lines = [line for para in split_text for line in textwrap.TextWrapper.wrap(self, para)] [Dennis] >> That... Looks rather incorrect. >> >> In most all list-comprehension

Re: 0x80070643 python download error

2020-03-30 Thread Pieter van Oostrum
JimathyJim Jim <2maxleed...@gmail.com> writes: > I am trying to download python on my laptop and this error came up. How do > I fix this error appearing and download python 3.8.2? Maybe you could specify what OS, and from what site/URL you are downloading. And at which moment the error appears.

Re: how to specify trusted hosts in windows config file

2020-03-30 Thread Chris Angelico
On Tue, Mar 31, 2020 at 5:46 AM wrote: > > These are some of the command lines I've typed, and the results. It looks > like it's going to https://pypi.org. > > I have no idea whether that's correct, or not. > > I'm able to get past the Certificate error with other packages like requests. > But

Re: how to specify trusted hosts in windows config file

2020-03-30 Thread dcwhatthe
These are some of the command lines I've typed, and the results. It looks like it's going to https://pypi.org. I have no idea whether that's correct, or not. I'm able to get past the Certificate error with other packages like requests. But I just can't update pip. : [C:\TCMD25]python -m pi

Re: how to specify trusted hosts in windows config file

2020-03-30 Thread Chris Angelico
On Tue, Mar 31, 2020 at 4:21 AM wrote: > > On Monday, March 30, 2020 at 12:08:54 PM UTC-4, Chris Angelico wrote: > > On Tue, Mar 31, 2020 at 2:31 AM wrote: > > > > > > Hi, > > > > > > I'm able to get past the > > > > > > CERTIFICATE_VERIFY_FAILED > > > > > > > > > error with various packages by sp

Re: how to specify trusted hosts in windows config file

2020-03-30 Thread dcwhatthe
On Monday, March 30, 2020 at 12:08:54 PM UTC-4, Chris Angelico wrote: > On Tue, Mar 31, 2020 at 2:31 AM wrote: > > > > Hi, > > > > I'm able to get past the > > > > CERTIFICATE_VERIFY_FAILED > > > > > > error with various packages by specifying trusted host on the command line. > > > > > > But I can

Re: how to specify trusted hosts in windows config file

2020-03-30 Thread dcwhatthe
On Monday, March 30, 2020 at 12:09:48 PM UTC-4, MRAB wrote: > On 2020-03-30 16:25, dcwhatthe wrote: > > Hi, > > > > I'm able to get past the > > > > CERTIFICATE_VERIFY_FAILED > > > > > > error with various packages by specifying trusted host on the command line. > > > > > > But I can't seem t

Re: Confusing textwrap parameters, and request for RE help

2020-03-30 Thread Chris Angelico
On Tue, Mar 31, 2020 at 3:53 AM Dennis Lee Bieber wrote: > > On Sun, 29 Mar 2020 04:21:04 +, Steve Smith > declaimed the following: > > >I am having the same issue. I can either get the text to wrap, which makes > >all the text wrap, or I can get the text to ignore independent '/n' > >chara

Re: [baseline 1.0.0] Easy String Baseline

2020-03-30 Thread Chris Angelico
On Tue, Mar 31, 2020 at 4:01 AM JAYA KANOJIYA wrote: > > how can we complete this project.. > For this project, you’ll create a “word cloud” from a text by writing a > script. This script needs to process the text, remove punctuation, count > the frequencies, and ignore uninteresting or irrele

Re: [baseline 1.0.0] Easy String Baseline

2020-03-30 Thread JAYA KANOJIYA
how can we complete this project.. For this project, you’ll create a “word cloud” from a text by writing a script. This script needs to process the text, remove punctuation, count the frequencies, and ignore uninteresting or irrelevant words. On Mon, Mar 30, 2020 at 6:00 PM Dan Gass wrote: >

0x80070643 python download error

2020-03-30 Thread JimathyJim Jim
I am trying to download python on my laptop and this error came up. How do I fix this error appearing and download python 3.8.2? -- https://mail.python.org/mailman/listinfo/python-list

Re: how to specify trusted hosts in windows config file

2020-03-30 Thread MRAB
On 2020-03-30 16:25, dcwhat...@gmail.com wrote: Hi, I'm able to get past the CERTIFICATE_VERIFY_FAILED error with various packages by specifying trusted host on the command line. But I can't seem to upgrade pip itself. I keep getting the message "You are using pip version 19.2.3, however

Re: how to specify trusted hosts in windows config file

2020-03-30 Thread Chris Angelico
On Tue, Mar 31, 2020 at 2:31 AM wrote: > > Hi, > > I'm able to get past the > > CERTIFICATE_VERIFY_FAILED > > > error with various packages by specifying trusted host on the command line. > > > But I can't seem to upgrade pip itself. I keep getting the message > > "You are using pip version 19.2.

how to specify trusted hosts in windows config file

2020-03-30 Thread dcwhatthe
Hi, I'm able to get past the CERTIFICATE_VERIFY_FAILED error with various packages by specifying trusted host on the command line. But I can't seem to upgrade pip itself. I keep getting the message "You are using pip version 19.2.3, however 20.0.2 is available." But none of the commands o

Textwrapping with paragraphs, was RE: Confusing textwrap parameters, and request for RE help

2020-03-30 Thread Peter Otten
Steve Smith wrote: > I am having the same issue. I can either get the text to wrap, which makes > all the text wrap, or I can get the text to ignore independent '/n' > characters, so that all the blank space is removed. I'd like to set up my > code, so that only 1 blank space is remaining (I'll se