Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Made "ascii" the default encoding for MacPython, as suggested by MvL, and ↵ | Jack Jansen | 2003-01-08 | 1 | -0/+5 |
| | | | | ripped out my previous changes to test_unicode. Doing this for 2.3a1 should give people enough time to complain, if they want to, and then we can see whether we want to do anything about it. | ||||
* | Mention the change from patch #664376. | Thomas Heller | 2003-01-08 | 1 | -0/+3 |
| | |||||
* | Note about rexec.py and Bastion.py. This requires doc changes and | Guido van Rossum | 2003-01-07 | 1 | -0/+3 |
| | | | | whatsnew updates as well. | ||||
* | A note about EX_OK and friends in the posixmodule. | Barry Warsaw | 2003-01-07 | 1 | -0/+2 |
| | |||||
* | Fix from Michael Stone for SF bug #660476 and #513033 (bogus thread | Guido van Rossum | 2003-01-07 | 2 | -0/+5 |
| | | | | state swaps in readline). | ||||
* | removing - contains outdated information | Skip Montanaro | 2003-01-06 | 1 | -24/+0 |
| | |||||
* | SF feature #618024, urlparse fails on imap:// | Neal Norwitz | 2003-01-06 | 1 | -0/+1 |
| | |||||
* | SF #651082, tarfile module implementation from Lars Gustäbel | Neal Norwitz | 2003-01-05 | 2 | -0/+5 |
| | |||||
* | datetime_from_timet_and_us(): ignore leap seconds if the platform | Tim Peters | 2003-01-04 | 1 | -0/+6 |
| | | | | | | | localtime()/gmtime() insists on delivering them, + associated doc changes. Redid the docs for datetimtez.astimezone(). | ||||
* | A new implementation of astimezone() that does what we agreed on in all | Tim Peters | 2003-01-04 | 1 | -2/+12 |
| | | | | | | cases, plus even tougher tests of that. This implementation follows the correctness proof very closely, and should also be quicker (yes, I wrote the proof before the code, and the code proves the proof <wink>). | ||||
* | Moved this info to the top-level README where all the other | Skip Montanaro | 2003-01-04 | 1 | -68/+0 |
| | | | | platform-specific verbiage lives. | ||||
* | Remark about datetime tzinfo examples. | Tim Peters | 2003-01-03 | 1 | -3/+6 |
| | |||||
* | Allow PyFile_GetLine() to return Unicode objects. Fixes #660165. | Martin v. Löwis | 2003-01-03 | 1 | -0/+2 |
| | |||||
* | Fix SF #659228, 'realpath' function missing from os.path | Neal Norwitz | 2003-01-03 | 1 | -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 Ward | 2003-01-03 | 1 | -0/+5 |
| | |||||
* | Mention that imaplib now supports SSL -- this wasn't noted before. | Guido van Rossum | 2003-01-03 | 1 | -0/+2 |
| | |||||
* | Fixed markup. | David Goodger | 2003-01-03 | 1 | -8/+17 |
| | |||||
* | Updated (2.3 OK now) | David Goodger | 2003-01-03 | 1 | -6/+8 |
| | |||||
* | The tzinfo methods utcoffset() and dst() must return a timedelta object | Tim Peters | 2003-01-02 | 1 | -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 patch | Skip Montanaro | 2003-01-02 | 1 | -0/+4 |
| | | | | 661092. | ||||
* | astimezone() internals: if utcoffset() returns a duration, complain if | Tim Peters | 2003-01-02 | 1 | -0/+4 |
| | | | | dst() returns None (instead of treating that as 0). | ||||
* | Added a section to record datetime changes. There's apparently going to | Tim Peters | 2003-01-02 | 1 | -0/+5 |
| | | | | be an unbounded number of API changes <0.6 wink>. | ||||
* | SF bug 660795: logging missing from Python 2.3a1 for Windows. | Tim Peters | 2003-01-02 | 1 | -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 those | Skip Montanaro | 2003-01-01 | 1 | -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öwis | 2003-01-01 | 1 | -0/+38 |
| | | | | terminal. | ||||
* | Add recipe for creating NEWS.html. | Guido van Rossum | 2002-12-31 | 1 | -0/+11 |
| | |||||
* | Bernhard Herzog's paragraph and string-filling code. I've been using it for | Skip Montanaro | 2002-12-31 | 1 | -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 Rossum | 2002-12-31 | 1 | -0/+5 |
| | |||||
* | Set the release date. | Guido van Rossum | 2002-12-31 | 1 | -1/+1 |
| | |||||
* | Revert SF patch 659809 -- it causes double options that can cause breakage. | Guido van Rossum | 2002-12-31 | 1 | -3/+0 |
| | |||||
* | Add getloadavg. | Martin v. Löwis | 2002-12-31 | 1 | -2/+2 |
| | |||||
* | Patch #658927: Add getctime to os.path. | Martin v. Löwis | 2002-12-31 | 1 | -0/+2 |
| | | | | Document that getatime and getmtime may return floats. | ||||
* | Patch #656590: /dev/ptmx support for ptys. | Martin v. Löwis | 2002-12-31 | 2 | -0/+3 |
| | |||||
* | Broke the zipimport/PEP 302 news item into two separate items. | Just van Rossum | 2002-12-31 | 1 | -9/+12 |
| | |||||
* | Dedent a paragraph that was accidentally aligned with a preceding | Guido van Rossum | 2002-12-31 | 1 | -8/+8 |
| | | | | nested list. | ||||
* | News about zipimport. | Guido van Rossum | 2002-12-30 | 1 | -0/+16 |
| | |||||
* | Added a note about the move of Mac/Lib to Lib/plat-mac. | Jack Jansen | 2002-12-30 | 1 | -0/+4 |
| | |||||
* | SF patch 659809, by Daniel Brotsky: fix Makefile.pre to use config | Guido van Rossum | 2002-12-30 | 1 | -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 support | Barry Warsaw | 2002-12-30 | 1 | -4/+5 |
| | |||||
* | Add news about fix for bug #624807. | Neil Schemenauer | 2002-12-30 | 1 | -0/+4 |
| | |||||
* | Update the email package news. | Barry Warsaw | 2002-12-30 | 1 | -1/+1 |
| | |||||
* | SF patch 658251: Install a C implementation of the Mersenne Twister as the | Raymond Hettinger | 2002-12-29 | 1 | -0/+19 |
| | | | | core generator for random.py. | ||||
* | Add newsitem for the two new unittest methods. | Raymond Hettinger | 2002-12-29 | 1 | -15/+21 |
| | | | | Also, made some whitespace cleanup. | ||||
* | Apparently FreeBSD enables some HW floating-point exceptions by default. | Tim Peters | 2002-12-28 | 1 | -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 Rossum | 2002-12-25 | 1 | -6/+0 |
| | |||||
* | SF 658405: calendar.py to rely on the datetime module instead of the time | Raymond Hettinger | 2002-12-25 | 1 | -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 Rossum | 2002-12-23 | 1 | -4/+0 |
| | |||||
* | Add warning for assignment to None, True and False. This is patch | Guido van Rossum | 2002-12-23 | 1 | -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 Jansen | 2002-12-23 | 1 | -2/+53 |
| | |||||
* | This is Richie Hindle's patch | Michael W. Hudson | 2002-12-17 | 1 | -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. |