Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | macfsn is gone. | Jack Jansen | 2002-12-26 | 1 | -1/+1 |
| | |||||
* | Integrated macfsn into macfs, and made the Standard File calls return the | Jack Jansen | 2002-12-26 | 2 | -169/+140 |
| | | | | correct FSSpec implementations. | ||||
* | Return the macfs variation for FSSpec and Alias, not the underlying | Jack Jansen | 2002-12-26 | 1 | -3/+5 |
| | | | | Carbon.File version, so the old method names work. | ||||
* | Second-argument alias methods were generated with a variation on | Jack Jansen | 2002-12-26 | 2 | -53/+53 |
| | | | | MethodGenerator, this should be OSErrMethodGenerator. | ||||
* | Add XXX about Winsock error values | Guido van Rossum | 2002-12-26 | 1 | -0/+1 |
| | |||||
* | Also skip testHostnameRes() if gethostbyaddr() raises an exception. | Guido van Rossum | 2002-12-26 | 1 | -1/+5 |
| | |||||
* | Skip testHostnameRes() if gethostbyname() raises an exception. | Guido van Rossum | 2002-12-26 | 1 | -1/+5 |
| | |||||
* | Fix julian day problem with strptime. Note: XXX about using 0, suggestions? | Neal Norwitz | 2002-12-26 | 2 | -1/+15 |
| | |||||
* | Added tests to ensure that timetz comparison, and datetimetz | Tim Peters | 2002-12-26 | 1 | -9/+67 |
| | | | | | | | | | | | subtraction, work as documented. In the Python implementation, they weren't calling utcoffset() if both operands had the same tzinfo object. That's fine if it so happens that the shared tzinfo object returns a fixed offset (independent of operand), but can give wrong results if that's not so, and the latter obtains in a tzinfo subclass instance trying to model both standard and daylight times. The C implementation was already doing this "correctly", so we're just adding tests to verify it. | ||||
* | Backing out patch #642578 in anticipation of final acceptance of PEP 302. | Just van Rossum | 2002-12-25 | 3 | -168/+0 |
| | |||||
* | If you entered a pathname for a nonexisting file to a FSSpec constructor | Jack Jansen | 2002-12-25 | 2 | -0/+4 |
| | | | | | on OSX then the actual error (file not found) was obscured by the error message that tried to be helpful about the allowed arguments. Fixed. | ||||
* | Changed folder name for apps from Python to MacPython-$(VERSION) (for a | Jack Jansen | 2002-12-25 | 2 | -2/+2 |
| | | | | | normal 2.3 framework install) and MacPython-OSX-$(VERSION) (for the experimental Jaguar addon install). | ||||
* | SF 658405: calendar.py to rely on the datetime module instead of the time | Raymond Hettinger | 2002-12-25 | 3 | -22/+18 |
| | | | | | | | | | module. The code is shorter, more readable, faster, and dramatically increases the range of acceptable dates. Also, used the floor division operator in leapdays(). | ||||
* | Implemented datetime.astimezone() and datetimetz.astimezone(). | Tim Peters | 2002-12-25 | 3 | -18/+159 |
| | |||||
* | Whitespace normalization. | Tim Peters | 2002-12-24 | 7 | -11/+10 |
| | |||||
* | Add an XXX comment about relative imports. | Guido van Rossum | 2002-12-24 | 1 | -1/+2 |
| | |||||
* | boolcheck cannot be deleted here. | Tony Lownds | 2002-12-24 | 1 | -1/+1 |
| | |||||
* | Move boolcheck before import of other IDLE modules | Tony Lownds | 2002-12-24 | 1 | -3/+3 |
| | |||||
* | Removed blurb admonishing users to raise an exception if the datetime | Tim Peters | 2002-12-24 | 1 | -2/+1 |
| | | | | argument to a tzinfo method doesn't have a matching tzinfo member. | ||||
* | Added note about technical pickle limitation on tzinfo instances. | Tim Peters | 2002-12-24 | 1 | -1/+6 |
| | |||||
* | tzinfo.{utcoffset,dst} can return timedelta (or integer or None). | Tim Peters | 2002-12-24 | 1 | -15/+21 |
| | | | | {timetz,datetimetz}.{uctcoffset,dst} do return timedelta (or None). | ||||
* | Add test for SF #658106. Will backport. | Neal Norwitz | 2002-12-24 | 1 | -0/+4 |
| | |||||
* | Fix SF #658023, "What's New in 2.3", s12, verbatim error | Neal Norwitz | 2002-12-24 | 1 | -1/+1 |
| | | | | Remove space between \end {verbatim} | ||||
* | Added File and Folder, removed macfs. | Jack Jansen | 2002-12-24 | 2 | -0/+0 |
| | |||||
* | Fixed typo. | Jack Jansen | 2002-12-24 | 1 | -1/+1 |
| | |||||
* | Removed macfs, added File and Folder. | Jack Jansen | 2002-12-24 | 1 | -2/+4 |
| | |||||
* | Updated for demise of macfs. | Jack Jansen | 2002-12-24 | 2 | -2/+0 |
| | |||||
* | M PyShell.py | Kurt B. Kaiser | 2002-12-24 | 5 | -15/+35 |
| | | | | | | | | | | | | | | | | M idle M idle.py M idle.pyw M setup.py Switch back to installing IDLE as a package. The IDLE GUI and the subprocess will both attempt to start up via the package mechanism, but if IDLE is not yet installed it is possible to run by calling python idle.py in the IDLE source directory, or to add the source directory to sys.path. One advantage of doing it this way is IDLE stays off sys.path. Developed in collaboration with Tony Lownds. | ||||
* | Implemented .replace() methods for date, datetime, datetimetz, time and | Tim Peters | 2002-12-24 | 3 | -27/+332 |
| | | | | timetz. | ||||
* | IDLE should exit if it fails to connect with the execution server | Kurt B. Kaiser | 2002-12-24 | 1 | -1/+1 |
| | | | | subprocess. Currently it opens a dead shell window. | ||||
* | 1. RPC stack levels were not pruned from traceback unless IDLE was started | Kurt B. Kaiser | 2002-12-24 | 1 | -12/+27 |
| | | | | | | from its source directory. 2. Replace final traceback '?' with '-toplevel-' 3. Remove duplicated import boolcheck | ||||
* | Uniform Capitalization in Menus | Kurt B. Kaiser | 2002-12-24 | 1 | -20/+20 |
| | |||||
* | - Various tweaks to shut up compiler warnings. | Jack Jansen | 2002-12-23 | 27 | -86/+157 |
| | | | | | - Regenerated with the correct calls to PyType_Ready and the correct deallocator calls. | ||||
* | Remove debugging connection message | Kurt B. Kaiser | 2002-12-23 | 1 | -2/+3 |
| | |||||
* | - Various tweaks to forestall compiler warnings. | Jack Jansen | 2002-12-23 | 2 | -16/+30 |
| | |||||
* | Oops, old-style types don't have a tp_free slot. Call PyObject_Free | Jack Jansen | 2002-12-23 | 1 | -2/+6 |
| | | | | directly in that case. | ||||
* | Brought the strftime explanation into synch with the plain-text sandbox | Tim Peters | 2002-12-23 | 1 | -45/+56 |
| | | | | | docs, and moved its section to the end (before the "C API" section, which latter doesn't really belong in the Library manual). | ||||
* | Squashed compiler warnings by adding casts, making sure prototypes are in | Jack Jansen | 2002-12-23 | 4 | -3/+7 |
| | | | | scope and looking at types. | ||||
* | Add in the datetime docs now that they pass LaTeX. Still ugly, but that can | Fred Drake | 2002-12-23 | 2 | -0/+3 |
| | | | | be fixed. | ||||
* | Lots of markup changes. This is still pretty sad, but passes LaTeX | Fred Drake | 2002-12-23 | 1 | -483/+558 |
| | | | | and is mostly readable. | ||||
* | Move the examples of concrete tzinfo classes to a separate file, so the | Fred Drake | 2002-12-23 | 1 | -0/+51 |
| | | | | verbatim environment does not bollux page breaking. | ||||
* | Make this script execute using pythonw | Tony Lownds | 2002-12-23 | 1 | -0/+1 |
| | |||||
* | Revert to revision 1.3; Mac OS X has a platform specific startup script, ↵ | Tony Lownds | 2002-12-23 | 1 | -15/+2 |
| | | | | macosx_main.py | ||||
* | Move boolcheck to PyShell | Tony Lownds | 2002-12-23 | 2 | -7/+4 |
| | |||||
* | Added docs for (draft) pkgutil module. | Fred Drake | 2002-12-23 | 3 | -0/+52 |
| | |||||
* | Oops. Roll back that last change. It wasn't ready for release. :-( | Guido van Rossum | 2002-12-23 | 2 | -100/+30 |
| | |||||
* | Don't rebind True and False. | Tim Peters | 2002-12-23 | 1 | -5/+5 |
| | |||||
* | Add warning for assignment to None, True and False. This is patch | Guido van Rossum | 2002-12-23 | 2 | -30/+100 |
| | | | | 549213 by Jeremy (checking in for him since he's away and busy). | ||||
* | Last week we discussed adding this module to the standard library. | Guido van Rossum | 2002-12-23 | 1 | -0/+78 |
| | | | | | | Here's a draft. I have no immediate use for it, but I'd like this to be available for experimentation. I may withdraw it or change it radically up to and including the release of Python 2.3b1. | ||||
* | call_utc_tzinfo_method(): Got rid of the label and the gotos. | Tim Peters | 2002-12-23 | 1 | -7/+2 |
| |