[Python-checkins] python/dist/src/Misc NEWS,1.978,1.979 (original) (raw)
tim_one at users.sourceforge.net tim_one at users.sourceforge.net
Mon May 31 15:28:04 EDT 2004
- Previous message: [Python-checkins] python/dist/src/Lib doctest.py,1.33,1.34
- Next message: [Python-checkins] python/dist/src/Doc/dist dist.tex,1.73,1.74
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Update of /cvsroot/python/python/dist/src/Misc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9423/Misc
Modified Files: NEWS Log Message: SF patch 959726: sdist versus SVN The disutils sdist command now ignores .svn directories.
Index: NEWS
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.978
retrieving revision 1.979
diff -C2 -d -r1.978 -r1.979
*** NEWS 31 May 2004 18:22:40 -0000 1.978
--- NEWS 31 May 2004 19:27:59 -0000 1.979
***************
*** 150,154 ****
- Added a sorted() builtin function that returns a new sorted list
! from any iterable.
- CObjects are now mutable (on the C level) through PyCObject_SetVoidPtr.
--- 150,154 ----
- Added a sorted() builtin function that returns a new sorted list
! from any iterable.
- CObjects are now mutable (on the C level) through PyCObject_SetVoidPtr.
***************
*** 198,204 ****
- 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.
! - 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.
--- 198,204 ----
- 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.
! - 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.
***************
*** 312,315 ****
--- 312,319 ----
- 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
- Previous message: [Python-checkins] python/dist/src/Lib doctest.py,1.33,1.34
- Next message: [Python-checkins] python/dist/src/Doc/dist dist.tex,1.73,1.74
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]