Issue1545341
Created on 2006-08-23 14:49 by haypo, last changed 2006-10-09 17:16 by akuchling.
|
msg29619 - (view) |
Author: STINNER Victor (haypo) |
Date: 2006-08-23 14:49 |
|
Code:
====================== 8< =====================
from distutils.core import setup
setup(..., classifier=('Intended Audience ::
Developers', 'Environment :: Console ::
Curses'), ...)
====================== 8< =====================
The query: "./setup.py register" will create HTML
request:
----------------GHSKFJDLGDS7543FJKLFHRE75642756743254
Content-Disposition: form-data; name="classifiers"
('Intended Audience :: Developers', 'Environment ::
Console :: Curses')
Instead of a multipart part for each value.
====
The bug is stupid, see attached patch.
Haypo
|
|
msg29620 - (view) |
Author: A.M. Kuchling (akuchling) |
Date: 2006-10-06 13:20 |
|
Logged In: YES
user_id=11375
Fix applied to trunk in rev. 52211; I'll backport to 2.5 and
2.4.
The Distutils code is intended to be compatible with Python
2.1, so I've reworked the change to keep using type()
instead of isinstance(). Patch attached.
|
|
msg29621 - (view) |
Author: STINNER Victor (haypo) |
Date: 2006-10-06 16:12 |
|
Logged In: YES
user_id=365388
Ok nice ;-)
|
|
msg29622 - (view) |
Author: A.M. Kuchling (akuchling) |
Date: 2006-10-09 17:13 |
|
Logged In: YES
user_id=11375
Committed to 2.5-main in rev. 52243.
|
|
msg29623 - (view) |
Author: A.M. Kuchling (akuchling) |
Date: 2006-10-09 17:16 |
|
Logged In: YES
user_id=11375
Committed to 2.4-maint in rev. 52244.
Closing. Thanks for the bug report!
|
|
| Date |
User |
Action |
Args |
| 2006-08-23 14:49:51 | haypo | create | |
|