matplotlib graph white space

2021-10-04 Thread Steve
I am using the first bar graph listed at this site: https://matplotlib.org/stable/gallery/index.html The problem I have is that there is too much white space around the graph. My data would be better displayed if I could widen the graph into the space to the right and left of the chart. Steve

EuroPython 2021: Edited videos of the second day available

2021-10-04 Thread Marc-Andre Lemburg
We’re happy to release another batch of 35 cut videos of EuroPython 2021 covering most of the second day sessions of the conference. Together with the first day videos, we now have 77 videos waiting for you. You can watch them on our YouTube channel: * EuroPython 2021 Playlist

Re: matplotlib graph white space

2021-10-04 Thread David Lowry-Duda
> I am using the first bar graph listed at this site: > https://matplotlib.org/stable/gallery/index.html > > The problem I have is that there is too much white space around the graph. > My data would be better displayed if I could widen the graph into the space > to the right and left of the chart

RE: matplotlib graph white space

2021-10-04 Thread Steve
Yes, I saw that but it is a change for all sides. Is there a setting to change just the left and right padding? -Original Message- From: Michel Alwan Sent: Monday, October 4, 2021 7:56 AM To: Steve Cc: python-list@python.org Subject: Re: matplotlib graph white space In the plot

[RELEASE] Python 3.10.0 is available

2021-10-04 Thread Pablo Galindo Salgado
On behalf of the Python development community and the Python 3.10 release team, I’m pleased to announce the availability of Python 3.10.0. Python 3.10.0 is the newest major release of the Python programming language, and it contains many new features and optimizations. https://www.python.org/downl

[ANN] PyYAML-6.0b1 Released

2021-10-04 Thread Ingy dot Net
=== Announcing PyYAML-6.0b1 === A new beta release of PyYAML is now available: https://github.com/yaml/pyyaml/releases/tag/6.0b1 The previously-deprecated default loader selection in `yaml.load()` has been removed; `Loader` is now a required argument. Supp

pythonpapers.org domain name to lapse in November

2021-10-04 Thread Mike Dewhirst via Python-list
The board of editors of the Python Papers has decided to let the pythonpapers.org domain name to lapse. It will not be renewed in November. Anyone interested in it can get in touch. Cheers Mike -- Signed email is an absolute defence against phishing. This email has been signed with my privat

Re: McCabe complexity for just changed files in a commit?

2021-10-04 Thread Kushal Kumaran
On Sat, Oct 02 2021 at 09:05:47 PM, Dan Stromberg wrote: > Hi folks. > > Is there a way of getting the McCabe Complexity of just the functions and > methods (in Python) changed in a git commit? > > I found radon, and it looks good. But I think it wants to do entire files, > no? > Calculate your

Re: McCabe complexity for just changed files in a commit?

2021-10-04 Thread Chris Angelico
On Tue, Oct 5, 2021 at 3:44 PM Kushal Kumaran wrote: > > On Sat, Oct 02 2021 at 09:05:47 PM, Dan Stromberg wrote: > > Hi folks. > > > > Is there a way of getting the McCabe Complexity of just the functions and > > methods (in Python) changed in a git commit? > > > > I found radon, and it looks go

Re: McCabe complexity for just changed files in a commit?

2021-10-04 Thread Kushal Kumaran
On Tue, Oct 05 2021 at 03:55:22 PM, Chris Angelico wrote: > On Tue, Oct 5, 2021 at 3:44 PM Kushal Kumaran wrote: >> >> On Sat, Oct 02 2021 at 09:05:47 PM, Dan Stromberg >> wrote: >> > Hi folks. >> > >> > Is there a way of getting the McCabe Complexity of just the functions and >> > methods (in