1. 27 Nis, 2001 3 kayıt (commit)
  2. 26 Nis, 2001 2 kayıt (commit)
  3. 25 Nis, 2001 10 kayıt (commit)
  4. 24 Nis, 2001 1 kayıt (commit)
  5. 23 Nis, 2001 5 kayıt (commit)
    • Andrew M. Kuchling's avatar
      Fix typo in docstring · b3ca303a
      Andrew M. Kuchling yazdı
      b3ca303a
    • Andrew M. Kuchling's avatar
      Bump version # for final release · c42402fa
      Andrew M. Kuchling yazdı
      c42402fa
    • Marc-André Lemburg's avatar
      This patch originated from an idea by Martin v. Loewis who submitted a · 8155e0e5
      Marc-André Lemburg yazdı
      patch for sharing single character Unicode objects.
      
      Martin's patch had to be reworked in a number of ways to take Unicode
      resizing into consideration as well. Here's what the updated patch
      implements:
      
      * Single character Unicode strings in the Latin-1 range are shared
        (not only ASCII chars as in Martin's original patch).
      
      * The ASCII and Latin-1 codecs make use of this optimization,
        providing a noticable speedup for single character strings. Most
        Unicode methods can use the optimization as well (by virtue
        of using PyUnicode_FromUnicode()).
      
      * Some code cleanup was done (replacing memcpy with Py_UNICODE_COPY)
      
      * The PyUnicode_Resize() can now also handle the case of resizing
        unicode_empty which previously resulted in an error.
      
      * Modified the internal API _PyUnicode_Resize() and
        the public PyUnicode_Resize() API to handle references to
        shared objects correctly. The _PyUnicode_Resize() signature
        changed due to this.
      
      * Callers of PyUnicode_FromUnicode() may now only modify the Unicode
        object contents of the returned object in case they called the API
        with NULL as content template.
      
      Note that even though this patch passes the regression tests, there
      may still be subtle bugs in the sharing code.
      8155e0e5
    • Guido van Rossum's avatar
      Mondo changes to the iterator stuff, without changing how Python code · 213c7a6a
      Guido van Rossum yazdı
      sees it (test_iter.py is unchanged).
      
      - Added a tp_iternext slot, which calls the iterator's next() method;
        this is much faster for built-in iterators over built-in types
        such as lists and dicts, speeding up pybench's ForLoop with about
        25% compared to Python 2.1.  (Now there's a good argument for
        iterators. ;-)
      
      - Renamed the built-in sequence iterator SeqIter, affecting the C API
        functions for it.  (This frees up the PyIter prefix for generic
        iterator operations.)
      
      - Added PyIter_Check(obj), which checks that obj's type has a
        tp_iternext slot and that the proper feature flag is set.
      
      - Added PyIter_Next(obj) which calls the tp_iternext slot.  It has a
        somewhat complex return condition due to the need for speed: when it
        returns NULL, it may not have set an exception condition, meaning
        the iterator is exhausted; when the exception StopIteration is set
        (or a derived exception class), it means the same thing; any other
        exception means some other error occurred.
      213c7a6a
    • Guido van Rossum's avatar
      At the suggestion of Peter Funk, document 'key in dict' and 'key not · 8b3d6ca3
      Guido van Rossum yazdı
      in dict' after has_key(), with a \versionadded{2.2} note.
      8b3d6ca3
  6. 22 Nis, 2001 2 kayıt (commit)
  7. 21 Nis, 2001 10 kayıt (commit)
  8. 20 Nis, 2001 6 kayıt (commit)
  9. 19 Nis, 2001 1 kayıt (commit)