summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2008-05-10 19:51:55 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2008-05-10 19:51:55 (GMT)
commitcd8001c8ed8ea11b13a57be7f0e524133177c2f8 (patch)
tree2eb1a8681fa32764b64cc9ca723c455692e2f5a7 /Misc
parent4ff7fc49c6ac474545e942348aed90e7730d514e (diff)
downloadcpython-cd8001c8ed8ea11b13a57be7f0e524133177c2f8.zip
cpython-cd8001c8ed8ea11b13a57be7f0e524133177c2f8.tar.gz
cpython-cd8001c8ed8ea11b13a57be7f0e524133177c2f8.tar.bz2
#1858 from Tarek Ziade:
Allow multiple repositories in .pypirc; see http://wiki.python.org/moin/EnhancedPyPI for discussion. The patch is slightly revised from Tarek's last patch: I've simplified the PyPIRCCommand.finalize_options() method to not look at sys.argv. Tests still pass.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS5
2 files changed, 6 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 00fcff1..d60e5cf 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -758,3 +758,4 @@ Siebren van der Zee
Uwe Zessin
Amaury Forgeot d'Arc
Peter Åstrand
+Tarek ZiadŽ
diff --git a/Misc/NEWS b/Misc/NEWS
index 3654855..0da4e92 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -369,6 +369,11 @@ Library
platforms when x is too large to fit into an IEEE 754 float; previously
it only raised OverflowError on non IEEE 754 platforms.
+- Issues #2166, #1741 and #1531505: now distutils deals with HOME
+ correctly under win32
+
+- distutils: added multiple server support in .pypirc
+
- Issue #1106316: pdb.post_mortem()'s parameter, "traceback", is now
optional: it defaults to the traceback of the exception that is currently
being handled (is mandatory to be in the middle of an exception, otherwise