1. 12 May, 1993 3 commits
  2. 11 May, 1993 1 commit
  3. 10 May, 1993 3 commits
  4. 07 May, 1993 2 commits
  5. 06 May, 1993 2 commits
  6. 15 Apr, 1993 1 commit
  7. 08 Apr, 1993 1 commit
  8. 07 Apr, 1993 1 commit
  9. 01 Apr, 1993 6 commits
  10. 30 Mar, 1993 3 commits
    • Guido van Rossum's avatar
    • Guido van Rossum's avatar
      * Fixed some subtleties with fastlocals. You can no longer access · 187cb64a
      Guido van Rossum authored
        f_fastlocals in a traceback object (this is a core dump hazard
        if there are <nil> entries), but instead eval_code() merges the fast
        locals back into the locals dictionary if it looks like the local
        variables will be retained.  Also, the merge routines save
        exceptions since this is sometimes needed (alas!).
      
      * Added id() to bltinmodule.c, which returns an object's address
        (identity).  Useful to walk arbitrary data structures containing
        cycles.
      
      * Added compile() to bltinmodule.c and compile_string() to
        pythonrun.[ch]: support to exec/eval arbitrary code objects.  The
        code that defaults globals and locals is moved from run_node in
        pythonrun.c (which is now identical to eval_node) to eval_code in
        ceval.c.  [XXX For elegance a clean-up session is necessary.]
      187cb64a
    • Guido van Rossum's avatar
      Changes to speed up local variables enormously, by avoiding dictionary · 3873f1e0
      Guido van Rossum authored
      lookup (opcode.h, ceval.[ch], compile.c, frameobject.[ch],
      pythonrun.c, import.c).  The .pyc MAGIC number is changed again.
      Added get_menu_text to flmodule.
      3873f1e0
  11. 29 Mar, 1993 5 commits
  12. 27 Mar, 1993 1 commit
  13. 17 Mar, 1993 2 commits
  14. 16 Mar, 1993 2 commits
  15. 02 Mar, 1993 3 commits
  16. 01 Mar, 1993 1 commit
  17. 25 Feb, 1993 3 commits
    • Guido van Rossum's avatar
      Vrec.py, Vrecb.py: · 59f9eaa3
      Guido van Rossum authored
      	 - call v.SetParam() after v.BindGLWindow()
      	 - turn of dithering in mono/grey mode
      	 - use prefposition to place the top left corner at (150, 150)
      	   (so that the video remains visible during recording)
      	 - default width is 256
      Vcopy.py: correct typos; more verbose output.
      OldVcopy.py: new name for Jack's old grabbing Vcopy.py.
      Vstat.py: print values of all video parameters.
      59f9eaa3
    • Guido van Rossum's avatar
      Change Vinfo and Vaddcache to usr /ufs/guido/bin/sgi/python. · 515fddf5
      Guido van Rossum authored
      Don't force packfactor to 1 in header when writing rgb data.
      Small bugfixes in Vcopy.
      515fddf5
    • Guido van Rossum's avatar
      - Separated grabbing (which isn't used much!) from VFile. · a37de38e
      Guido van Rossum authored
      - Renamed old Vcopy.py to OldVcopy.py, some cosmetic changes to it (is
        it still needed?)
      - Added new Vcopy.py which does everything that Vtime.py does but also
        format conversions, image scaling, and packfactors.
      - VFile: make packfactor always a tuple; introduce set and get methods
        for pf, format, and calculate some derived values.
      - Added new module GET.py to std library, use it instead of defining
        DM* in VFile.
      - Get rid of C programs (new Python programs can do all that they do
        and they probably don't understand the current file format anyway).
      a37de38e