summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2004-05-31 19:27:59 (GMT)
committerTim Peters <tim.peters@gmail.com>2004-05-31 19:27:59 (GMT)
commit2f50e90818f17dd20760c9eb0854b603634f157d (patch)
treeb93eaa5f79d158ef668d6e2c0da5d65e8c64b5dd /Misc
parent92816de18e3456f8304a1aaa6f28b151858a6e5d (diff)
downloadcpython-2f50e90818f17dd20760c9eb0854b603634f157d.zip
cpython-2f50e90818f17dd20760c9eb0854b603634f157d.tar.gz
cpython-2f50e90818f17dd20760c9eb0854b603634f157d.tar.bz2
SF patch 959726: sdist versus SVN
The disutils sdist command now ignores .svn directories.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS10
1 files changed, 7 insertions, 3 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 45a172c..ab705af 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -149,7 +149,7 @@ Core and builtins
over a sequence.
- Added a sorted() builtin function that returns a new sorted list
- from any iterable.
+ from any iterable.
- CObjects are now mutable (on the C level) through PyCObject_SetVoidPtr.
@@ -197,9 +197,9 @@ Core and builtins
- buffer objects based on other objects no longer cache a pointer to
the data and the data length. Instead, the appropriate tp_as_buffer
- method is called as necessary.
+ method is called as necessary.
-- fixed: if a file is opened with an explicit buffer size >= 1, repeated
+- fixed: if a file is opened with an explicit buffer size >= 1, repeated
close() calls would attempt to free() the buffer already free()ed on
the first call.
@@ -311,6 +311,10 @@ Extension modules
Library
-------
+- The distutils sdist command now ignores all .svn directories, in
+ addition to CVS and RCS directories. .svn directories hold
+ administrative files for the Subversion source control system.
+
- Added a new module: cookielib. Automatic cookie handling for HTTP
clients. Also, support for cookielib has been added to urllib2, so
urllib2.urlopen() can transparently handle cookies.