1. 23 May, 2000 1 kayıt (commit)
  2. 11 May, 2000 1 kayıt (commit)
  3. 09 May, 2000 1 kayıt (commit)
  4. 13 Nis, 2000 1 kayıt (commit)
  5. 10 Nis, 2000 2 kayıt (commit)
  6. 31 Mar, 2000 4 kayıt (commit)
  7. 28 Mar, 2000 2 kayıt (commit)
    • Jeremy Hylton's avatar
      slightly modified version of Greg Ewing's extended call syntax patch · 7690151c
      Jeremy Hylton yazdı
      executive summary:
      Instead of typing 'apply(f, args, kwargs)' you can type 'f(*arg, **kwargs)'.
      Some file-by-file details follow.
      
      Grammar/Grammar:
          simplify varargslist, replacing '*' '*' with '**'
          add * & ** options to arglist
      
      Include/opcode.h & Lib/dis.py:
          define three new opcodes
              CALL_FUNCTION_VAR
              CALL_FUNCTION_KW
              CALL_FUNCTION_VAR_KW
      
      Python/ceval.c:
          extend TypeError "keyword parameter redefined" message to include
              the name of the offending keyword
          reindent CALL_FUNCTION using four spaces
          add handling of sequences and dictionaries using extend calls
          fix function import_from to use PyErr_Format
      7690151c
    • Guido van Rossum's avatar
      Marc-Andre Lemburg: · 24bdb047
      Guido van Rossum yazdı
      The attached patch set includes a workaround to get Python with
      Unicode compile on BSDI 4.x (courtesy Thomas Wouters; the cause
      is a bug in the BSDI wchar.h header file) and Python interfaces
      for the MBCS codec donated by Mark Hammond.
      
      Also included are some minor corrections w/r to the docs of
      the new "es" and "es#" parser markers (use PyMem_Free() instead
      of free(); thanks to Mark Hammond for finding these).
      
      The unicodedata tests are now in a separate file
      (test_unicodedata.py) to avoid problems if the module cannot
      be found.
      24bdb047
  8. 24 Mar, 2000 1 kayıt (commit)
    • Guido van Rossum's avatar
      Marc-Andre Lemburg: · d8855fde
      Guido van Rossum yazdı
      Attached you find the latest update of the Unicode implementation.
      The patch is against the current CVS version.
      
      It includes the fix I posted yesterday for the core dump problem
      in codecs.c (was introduced by my previous patch set -- sorry),
      adds more tests for the codecs and two new parser markers
      "es" and "es#".
      d8855fde
  9. 20 Mar, 2000 1 kayıt (commit)
    • Barry Warsaw's avatar
      On 17-Mar-2000, Marc-Andre Lemburg said: · 51ac5803
      Barry Warsaw yazdı
          Attached you find an update of the Unicode implementation.
      
          The patch is against the current CVS version. I would appreciate
          if someone with CVS checkin permissions could check the changes
          in.
      
          The patch contains all bugs and patches sent this week and also
          fixes a leak in the codecs code and a bug in the free list code
          for Unicode objects (which only shows up when compiling Python
          with Py_DEBUG; thanks to MarkH for spotting this one).
      51ac5803
  10. 10 Mar, 2000 1 kayıt (commit)
  11. 01 Ara, 1999 17 kayıt (commit)
  12. 05 Kas, 1999 1 kayıt (commit)
  13. 20 Agu, 1999 2 kayıt (commit)
  14. 10 Agu, 1999 1 kayıt (commit)
  15. 28 Tem, 1999 2 kayıt (commit)
    • Barry Warsaw's avatar
      A few minor Customize changes: · 5ed843fc
      Barry Warsaw yazdı
      (python): Set defgroup :prefix to "py-" to make variable names cleaner.
      
      (py-jpython-command, py-jpython-command-args): Set :tag for proper
      capitalization of JPython in variable name display.
      5ed843fc
    • Barry Warsaw's avatar
      (python-mode): Set which interpreter (CPython or JPython) to use the · 11f21560
      Barry Warsaw yazdı
      first time a py buffer is visited during the Emacs session.  This
      ensures that py-which-shells is initialized and also guarantees that
      the mode lines reflect the correct shell.  First bug found by GvR,
      second one has long bugged :) me.
      
      (py-toggle-shells): Programmatically, arg can also take the symbols
      `cpython' or `jpython', which makes it easy to call with the value of
      py-default-interpreter.
      
      (py-shell): Don't need to initialize py-which-* variables since these
      will guarantee to be initialized by python-mode when the first py
      buffer is visited.
      
      (py-default-interpreter): Update docstring.
      11f21560
  16. 27 Tem, 1999 1 kayıt (commit)
  17. 03 Haz, 1999 1 kayıt (commit)