- 24 Dec, 2002 10 commits
-
-
Neal Norwitz authored
Remove space between \end {verbatim}
-
Jack Jansen authored
-
Jack Jansen authored
-
Jack Jansen authored
-
Jack Jansen authored
-
Kurt B. Kaiser authored
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.
-
Tim Peters authored
timetz.
-
Kurt B. Kaiser authored
subprocess. Currently it opens a dead shell window.
-
Kurt B. Kaiser authored
from its source directory. 2. Replace final traceback '?' with '-toplevel-' 3. Remove duplicated import boolcheck
-
Kurt B. Kaiser authored
-
- 23 Dec, 2002 22 commits
-
-
Jack Jansen authored
- Regenerated with the correct calls to PyType_Ready and the correct deallocator calls.
-
Kurt B. Kaiser authored
-
Jack Jansen authored
-
Jack Jansen authored
directly in that case.
-
Tim Peters authored
docs, and moved its section to the end (before the "C API" section, which latter doesn't really belong in the Library manual).
-
Jack Jansen authored
scope and looking at types.
-
Fred Drake authored
be fixed.
-
Fred Drake authored
and is mostly readable.
-
Fred Drake authored
verbatim environment does not bollux page breaking.
-
Tony Lownds authored
-
Tony Lownds authored
-
Tony Lownds authored
-
Fred Drake authored
-
Guido van Rossum authored
-
Tim Peters authored
-
Guido van Rossum authored
549213 by Jeremy (checking in for him since he's away and busy).
-
Guido van Rossum authored
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.
-
Tim Peters authored
-
Andrew M. Kuchling authored
-
Jack Jansen authored
-
Kurt B. Kaiser authored
Let's try Alt-2....
-
Kurt B. Kaiser authored
M PyShell.py M idlever.py M setup.py 1. Update MANIFEST.in to include all non-pure Python files 2. PyShell and idlever reflect Rev 0.9a0 3. setup.py modified to install IDLE as a collection of modules with a .pth file living at the idlelib level in site-packages. This was done to make it easier to run from the source directory prior to installing IDLE. This approach may change back to the package technique depending on what happens with the Mac installation development.
-
- 22 Dec, 2002 5 commits
-
-
Tim Peters authored
be trusted with years before 1900, so now we raise ValueError if a date or datetime or datetimetz .strftime() method is called with a year before 1900.
-
Tim Peters authored
such that the datetime tests failed if the envar PYTHON2K was set. This is an utter mess, and the datetime module's strftime functions inherit it. I suspect that, regardless of the PYTHON2K setting, and regardless of platform limitations, the datetime strftime wrappers will end up delivering nonsense results (or bogus exceptions) for any year before 1900. I should probably just refuse to accept years earlier than that -- else we'll have to implement strftime() by hand.
-
Tim Peters authored
Also changed logic so that instances of user-defined subclasses of date, time, and datetime are called OFFSET_NAIVE instead of OFFSET_UNKNOWN.
-
Tim Peters authored
{timetz,datetimetz}.{utcoffset,dst}() now return a timedelta (or None) instead of an int (or None). tzinfo.{utcoffset,dst)() can now return a timedelta (or an int, or None). Curiously, this was much easier to do in the C implementation than in the Python implementation (which lives in the Zope3 code tree) -- the C code already had lots of hair to extract C ints from offset objects, and used C ints internally.
-
Kurt B. Kaiser authored
-
- 21 Dec, 2002 3 commits
-
-
Kurt B. Kaiser authored
directory becomes sys.path[0]. What is wanted is the directory from which IDLE was called. Insert the current working directory in the path if it isn't there already.
-
Kurt B. Kaiser authored
M idle M setup.py To be able to run from the source directory or from an installed version of IDLE, and also to allow the subprocess to find run(), Python needs to have the idlelib package on its path. 1. Modify setup.py to supply a .pth file living at same level as idlelib 2. Move boolcheck to PyShell.py 3. Remove boolcheck and path setting code from the "idle" script
-
Martin v. Löwis authored
-