[issue46175] Zero argument super() does not function properly inside generator expressions

2021-12-24 Thread Alex Walters


New submission from Alex Walters :

When zero argument super is used inside a generator expression, it raises 
'TypeError: super(type, obj): obj must be an instance or subtype of type'.

I can find no information on if this is working as intended, a bug, or a known 
issue, and the error isn't helping.  Attached is a minimal example of the error.

--
files: superbug.py
messages: 409166
nosy: tritium
priority: normal
severity: normal
status: open
title: Zero argument super() does not function properly inside generator 
expressions
versions: Python 3.9
Added file: https://bugs.python.org/file50518/superbug.py

___
Python tracker 
<https://bugs.python.org/issue46175>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue38526] zipfile.Path has the wrong method name

2019-10-19 Thread Alex Walters


New submission from Alex Walters :

https://docs.python.org/3.8/library/zipfile.html#zipfile.Path.listdir

The docs for zipfile.Path list a method named 'listdir', the closest 
approximation to the functionality described in the actual code is a method 
named 'iterdir'

--
assignee: docs@python
components: Documentation
messages: 354936
nosy: docs@python, tritium
priority: normal
severity: normal
status: open
title: zipfile.Path has the wrong method name
versions: Python 3.8

___
Python tracker 
<https://bugs.python.org/issue38526>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33598] ActiveState Recipes links in docs, and the apparent closure of Recipes

2018-05-25 Thread Alex Walters

Alex Walters <tritium-l...@sdamon.com> added the comment:

All recipes are MIT licensed unless otherwise noted on the recipe itself.

However, AFAICT, all the recipes that are linked to in the docs are written by 
Raymond Hettinger, so I don't think licensing will be that big of an issue.  We 
know where he is, we can ask him, and he has signed a CLA.

--

___
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue33598>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33598] ActiveState Recipes links in docs, and the apparent closure of Recipes

2018-05-22 Thread Alex Walters

New submission from Alex Walters <tritium-l...@sdamon.com>:

ActiveState has stopped accepting new recipes on their website, and migrated 
all current recipes to a Github repo.  I have seen no official announcement of 
a shutdown date for the code.activestate.com website, but it's future has to be 
in question considering the migration.

I propose we go through the docs for all the recipes, and either rescue them to 
a section of the docs (perhaps to a new "Code Examples" section), incorporate 
the recipes into the doc pages where appropriate, or excise them entirely.

Another option would be to update the links to the GitHub repo, but I am less 
enthusiastic about that option - GitHub repos come and go, and mutate structure 
easily.  I don't think it would be a good idea to deep link into a repository 
not controlled by the Python project.

It would stink to have a bunch of suddenly dead links in the docs.

--
assignee: docs@python
components: Documentation
messages: 317265
nosy: docs@python, rhettinger, tritium
priority: normal
severity: normal
status: open
title: ActiveState Recipes links in docs, and the apparent closure of Recipes

___
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue33598>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue27546] Integrate tkinter and asyncio (and async)

2018-05-14 Thread Alex Walters

Change by Alex Walters <tritium-l...@sdamon.com>:


--
nosy: +tritium

___
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue27546>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33351] Support compiling with clang-cl on Windows

2018-04-25 Thread Alex Walters

Alex Walters <tritium-l...@sdamon.com> added the comment:

When supporting platforms comes up, there's a usual list of questions, 
especially for windows.  I can remember two of them off the top of my head:

* Are you suggesting that CPython's build system move away from MSVC as the 
platform compiler for Windows?

* Are you able to provide a machine to run buildbots on?

--

___
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue33351>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33351] Support compiling with clang-cl on Windows

2018-04-25 Thread Alex Walters

Alex Walters <tritium-l...@sdamon.com> added the comment:

Is this the same as the clang/llvm C1 that you can enable from inside Visual 
Studio?

--
nosy: +tritium

___
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue33351>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26580] Documentation for ftplib still references ftpmirror.py

2016-03-19 Thread Alex Walters

New submission from Alex Walters:

in #23130 ftpmirror.py was removed from the python source distribution.  The 
documentation still references this, and sends people looking for the file 
(ostensibly as an example of how to use ftplib).

--
assignee: docs@python
components: Documentation
messages: 261908
nosy: docs@python, tritium
priority: normal
severity: normal
status: open
title: Documentation for ftplib still references ftpmirror.py
versions: Python 2.7, Python 3.2, Python 3.3, Python 3.4, Python 3.5

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26580>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue19853] Add support for Bitrig to 2.7

2015-07-26 Thread Alex Walters

Alex Walters added the comment:

The vast majority of the patch is adding || Defined('bitrig') after 
Defined('openbsd').  I don't know if that is an argument for or against, but on 
its face, its just working around an issue of an openbsd fork not identifying 
as openbsd.

--
nosy: +tritium

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue19853
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue24642] Will there be an MSI installer?

2015-07-19 Thread Alex Walters

Changes by Alex Walters tritium-l...@sdamon.com:


--
resolution:  - fixed
status: open - closed

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue24642
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue23496] Steps for Android Native Build of Python 3.4.2

2015-07-19 Thread Alex Walters

Changes by Alex Walters tritium-l...@sdamon.com:


--
nosy: +tritium

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue23496
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10716] Modernize pydoc to use better HTML and separate CSS

2015-07-18 Thread Alex Walters

Alex Walters added the comment:

Isn't this whats sphinx's apidoc is for?

--
nosy: +tritium

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10716
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue24642] Will there be an MSI installer?

2015-07-17 Thread Alex Walters

Alex Walters added the comment:

Having now worked with the new installer, there is nothing wrong with it, and 
provides sufficient scritpability, if that is a word.  I only have two (and a 
half) thoughts on it:

1. This should be more prominently documented.  The addition of the new web 
installer is listed in What's New, but not that the change to the new 
installer, and lack of the old msi installer.  This is noteworthy for anyone 
who does scripted installs of python.

2. passing /? should list the available kay-value arguments.

2.5. The help should really be to stdout... If you are running /? on an 
installer executable, you are in the command prompt - no one creates a shortcut 
to an installer exe then modifies that shortcut to add the /? argument.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue24642
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue24642] Will there be an MSI installer?

2015-07-17 Thread Alex Walters

Alex Walters added the comment:

on 2.5, I figured the answer would be along those lines.

for 2, Linking to the documentation at least would be helpful (or otherwise 
indicating that there are arguments that are not listed and are in the docs) if 
the arguments cant be listed reasonably easily.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue24642
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue24642] Will there be an MSI installer?

2015-07-16 Thread Alex Walters

New submission from Alex Walters:

I use the *.msi installers for python to automate deployment of... an absurd 
number of python installations.  I have been able to do this relatively easily, 
as the Windows installer didn't change much between 2.6 and 3.4 (possibly much 
longer than that, but I don't know about 2.5 or earlier).

3.5 added a new installer (the web installer), and apparently dropped the old 
standby *.msi installers, for the beta versions.

Will there be *.msi installers for 3.5?

--
components: Windows
messages: 246796
nosy: paul.moore, steve.dower, tim.golden, tritium, zach.ware
priority: normal
severity: normal
status: open
title: Will there be an MSI installer?
versions: Python 3.5

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue24642
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue24642] Will there be an MSI installer?

2015-07-16 Thread Alex Walters

Alex Walters added the comment:

Related to the exe installer... /? lists only 4 options, none of which are 
useful in restricting the installation, or changing its location.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue24642
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue24642] Will there be an MSI installer?

2015-07-16 Thread Alex Walters

Alex Walters added the comment:

and...you already addressed that.  Ignore previous.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue24642
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue23938] Deprecation of windows xp support missing from whats new

2015-04-13 Thread Alex Walters

New submission from Alex Walters:

the Whats New in Python 3.5 lacks an indication that cpython is dropping 
support for that platform due to Microsoft dropping continuing support for it 
(see PEP 11).

--
files: docs_unsupported_xp_35.patch
keywords: patch
messages: 240727
nosy: tritium
priority: normal
severity: normal
status: open
title: Deprecation of windows xp support missing from whats new
versions: Python 3.5
Added file: http://bugs.python.org/file38951/docs_unsupported_xp_35.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue23938
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue23938] Deprecation of windows xp support missing from whats new

2015-04-13 Thread Alex Walters

Changes by Alex Walters tritium-l...@sdamon.com:


--
assignee:  - docs@python
components: +Documentation
nosy: +docs@python

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue23938
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com