This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: distutils.command.upload: typo "protcol_version"
Type: behavior Stage: resolved
Components: Distutils Versions: Python 3.6, Python 3.5
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: berker.peksag, dstufft, eric.araujo, jwilk, python-dev
Priority: normal Keywords:

Created on 2016-06-18 18:26 by jwilk, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (3)
msg268820 - (view) Author: Jakub Wilk (jwilk) Date: 2016-06-18 18:26
distutils/command/upload.py reads:

        data = {
            # action
            ':action': 'file_upload',
            'protcol_version': '1',
            ...
        }

It should be of course 'protocol_version'.
I checked the PyPI code, and it's spelled correctly there.


This misspelling was found using mwic:
http://jwilk.net/software/mwic
msg268821 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2016-06-18 18:42
New changeset 81a9ce02b49b by Berker Peksag in branch '3.5':
Issue #27349: Fix typo in distutils upload command
https://hg.python.org/cpython/rev/81a9ce02b49b

New changeset a4d00ae53e35 by Berker Peksag in branch 'default':
Issue #27349: Merge from 3.5
https://hg.python.org/cpython/rev/a4d00ae53e35
msg268822 - (view) Author: Berker Peksag (berker.peksag) * (Python committer) Date: 2016-06-18 18:42
Thanks!
History
Date User Action Args
2022-04-11 14:58:32adminsetgithub: 71536
2016-06-18 18:42:55berker.peksagsetstatus: open -> closed

type: behavior
versions: + Python 3.5, Python 3.6
nosy: + berker.peksag

messages: + msg268822
resolution: fixed
stage: resolved
2016-06-18 18:42:34python-devsetnosy: + python-dev
messages: + msg268821
2016-06-18 18:26:42jwilkcreate