summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* Allow PyFile_GetLine() to return Unicode objects. Fixes #660165.Martin v. Löwis2003-01-031-0/+2
|
* Fix SF #659228, 'realpath' function missing from os.pathNeal Norwitz2003-01-031-1/+4
| | | | | | | Also added realpath = abspath for os2emx, similar to windows/mac which also don't really implement realpath. Backport candidate, I think?
* Mention ossaudiodev.Greg Ward2003-01-031-0/+5
|
* Mention that imaplib now supports SSL -- this wasn't noted before.Guido van Rossum2003-01-031-0/+2
|
* Fixed markup.David Goodger2003-01-031-8/+17
|
* Updated (2.3 OK now)David Goodger2003-01-031-6/+8
|
* The tzinfo methods utcoffset() and dst() must return a timedelta objectTim Peters2003-01-021-2/+7
| | | | | | (or None) now. In 2.3a1 they could also return an int or long, but that was an unhelpfully redundant leftover from an earlier version wherein they couldn't return a timedelta. TOOWTDI.
* Allow list sort's comparison function to explicitly be None. See SF patchSkip Montanaro2003-01-021-0/+4
| | | | 661092.
* astimezone() internals: if utcoffset() returns a duration, complain ifTim Peters2003-01-021-0/+4
| | | | dst() returns None (instead of treating that as 0).
* Added a section to record datetime changes. There's apparently going toTim Peters2003-01-021-0/+5
| | | | be an unbounded number of API changes <0.6 wink>.
* SF bug 660795: logging missing from Python 2.3a1 for Windows.Tim Peters2003-01-021-2/+5
| | | | | | Added the logging package. In the meantime, Neal Norwitz added a test_logging.py to the std test suite, which would have caught this oversight in the Windows installer.
* Split OPT make variable into OPT and BASECFLAGS. The latter contains thoseSkip Montanaro2003-01-011-0/+18
| | | | | | | | | | | compiler flags which are necessary to get a clean compile. The former is for user-specified optimizer, debug, trace fiddling. See patch 640843. Add /sw/lib and /sw/include to setup.py search paths on Darwin to take advantage of fink goodies. Add scriptsinstall target to Makefile to install certain scripts from Tools/scripts directory.
* Expose I_ constants. Auto-detect stropts.h. Properly configure the slave ↵Martin v. Löwis2003-01-011-0/+38
| | | | terminal.
* Add recipe for creating NEWS.html.Guido van Rossum2002-12-311-0/+11
|
* Bernhard Herzog's paragraph and string-filling code. I've been using it forSkip Montanaro2002-12-311-0/+152
| | | | | | a month or two with great success. Barry may want to tweak it some, but I think it's a worthwhile enough addition to get some more people trying it out.
* modulefinder.py moved to Lib/Just van Rossum2002-12-311-0/+5
|
* Set the release date.Guido van Rossum2002-12-311-1/+1
|
* Revert SF patch 659809 -- it causes double options that can cause breakage.Guido van Rossum2002-12-311-3/+0
|
* Add getloadavg.Martin v. Löwis2002-12-311-2/+2
|
* Patch #658927: Add getctime to os.path.Martin v. Löwis2002-12-311-0/+2
| | | | Document that getatime and getmtime may return floats.
* Patch #656590: /dev/ptmx support for ptys.Martin v. Löwis2002-12-312-0/+3
|
* Broke the zipimport/PEP 302 news item into two separate items.Just van Rossum2002-12-311-9/+12
|
* Dedent a paragraph that was accidentally aligned with a precedingGuido van Rossum2002-12-311-8/+8
| | | | nested list.
* News about zipimport.Guido van Rossum2002-12-301-0/+16
|
* Added a note about the move of Mac/Lib to Lib/plat-mac.Jack Jansen2002-12-301-0/+4
|
* SF patch 659809, by Daniel Brotsky: fix Makefile.pre to use configGuido van Rossum2002-12-301-0/+3
| | | | | | | | env. This adds @CFLAGS@ and @CPPFLAGS@ to the end of the respective variable definitions. It also adds $(LDFLAGS) to the $(CC) invocation to build $(PGEN).
* A short note about the versions of BerkeleyDB we now supportBarry Warsaw2002-12-301-4/+5
|
* Add news about fix for bug #624807.Neil Schemenauer2002-12-301-0/+4
|
* Update the email package news.Barry Warsaw2002-12-301-1/+1
|
* SF patch 658251: Install a C implementation of the Mersenne Twister as theRaymond Hettinger2002-12-291-0/+19
| | | | core generator for random.py.
* Add newsitem for the two new unittest methods.Raymond Hettinger2002-12-291-15/+21
| | | | Also, made some whitespace cleanup.
* Apparently FreeBSD enables some HW floating-point exceptions by default.Tim Peters2002-12-281-0/+1
| | | | | | | This can cause core dumps when Python runs. Python relies on the 754- (and C99-) mandated default "non-stop" mode for FP exceptions. This patch from Ben Laurie disables at least one FP exception on FreeBSD at Python startup time.
* Backing out patch #642578 in anticipation of final acceptance of PEP 302.Just van Rossum2002-12-251-6/+0
|
* SF 658405: calendar.py to rely on the datetime module instead of the timeRaymond Hettinger2002-12-251-0/+4
| | | | | | | | | module. The code is shorter, more readable, faster, and dramatically increases the range of acceptable dates. Also, used the floor division operator in leapdays().
* Oops. Roll back that last change. It wasn't ready for release. :-(Guido van Rossum2002-12-231-4/+0
|
* Add warning for assignment to None, True and False. This is patchGuido van Rossum2002-12-231-0/+4
| | | | 549213 by Jeremy (checking in for him since he's away and busy).
* Got rid of Mac/Relnotes, and started on mac-specific release notes in NEWS.Jack Jansen2002-12-231-2/+53
|
* This is Richie Hindle's patchMichael W. Hudson2002-12-171-2/+9
| | | | | | | | [ 643835 ] Set Next Statement for Python debuggers with a few tweaks by me: adding an unsigned or two, mentioning that not all jumps are allowed in the doc for pdb, adding a NEWS item and a note to whatsnew, and AuCTeX doing something cosmetic to libpdb.tex.
* Blurb about new datetime module.Tim Peters2002-12-161-2/+8
|
* Fixed bugGustavo Niemeyer2002-12-161-0/+3
| | | | | | | | | | | | | | | | | [#521782] unreliable file.read() error handling * Objects/fileobject.c (file_read): Clear errors before leaving the loop in all situations, and also check if some data was read before exiting the loop with an EWOULDBLOCK exception. * Doc/lib/libstdtypes.tex * Objects/fileobject.c Document that sometimes a read() operation can return less data than what the user asked, if running in non-blocking mode. * Misc/NEWS Document the fix.
* Use "dictionary literals" instead of "dictionaries", as suggested by Just.Gustavo Niemeyer2002-12-161-3/+3
|
* Fixing bugGustavo Niemeyer2002-12-161-0/+4
| | | | | | | | | | | | | | | | | | [#448679] Left to right * Python/compile.c (com_dictmaker): Reordered evaluation of dictionaries to follow strict LTR evaluation. * Lib/compiler/pycodegen.py (CodeGenerator.visitDict): Reordered evaluation of dictionaries to follow strict LTR evaluation. * Doc/ref/ref5.tex Documented the general LTR evaluation order idea. * Misc/NEWS Documented change in evaluation order of dictionaries.
* Applying patchGustavo Niemeyer2002-12-161-0/+3
| | | | | | | | | | | | | | | | | | | | | [#636769] Fix for major rexec bugs * Lib/rexec.py (FileBase): Added 'xreadlines' and '__iter__' to allowed file methods. (FileWrapper.__init__): Removed unnecessary self.f variable, which gave direct access to the file object. (RExec): Added 'xreadlines' and '_weakref' to allowed modules. (RExec.r_open): Convert string subclasses to a real string classes before doing comparisons with mode parameter. * Lib/ihooks.py (BasicModuleImporter.import_module/reload/unload): Convert the module name to a real string before working with it. (ModuleImporter.import_module/import_it/reload): Convert the module name to a real strings before working with it. * Misc/NEWS Document the change.
* Apply SF patch 652930: Add optional base argument to math.log(x[, base]).Raymond Hettinger2002-12-141-0/+2
|
* Mention the bdist_wininst postinstall script.Thomas Heller2002-12-121-0/+3
|
* News item for the change to turn _codecs into a builtin module.Marc-André Lemburg2002-12-121-0/+4
|
* Enhance issubclass() and PyObject_IsSubclass() so that a tuple isWalter Dörwald2002-12-121-0/+4
| | | | | | | | | | | supported as the second argument. This has the same meaning as for isinstance(), i.e. issubclass(X, (A, B)) is equivalent to issubclass(X, A) or issubclass(X, B). Compared to isinstance(), this patch does not search the tuple recursively for classes, i.e. any entry in the tuple that is not a class, will result in a TypeError. This closes SF patch #649608.
* Docs were added about a month agoRaymond Hettinger2002-12-091-2/+1
|
* Add support for binary pickles to the shelve module. In some situationsSkip Montanaro2002-12-081-0/+4
| | | | | | | | this can result in significantly smaller files. All classes as well as the open function now accept an optional binary parameter, which defaults to False for backward compatibility. Added a small test suite, updated the libref documentation (including documenting the exported classes and fixing a few other nits) and added a note about the change to Misc/NEWS.
* Patch #614055: Support OpenVMS.Martin v. Löwis2002-12-062-0/+3
|