An error occurred fetching the project authors.
  1. 26 Mar, 2009 3 commits
  2. 03 Sep, 2008 1 commit
  3. 18 Aug, 2008 1 commit
    • Guido van Rossum's avatar
      - Issue #3300: make urllib.parse.[un]quote() default to UTF-8. · 52dbbb90
      Guido van Rossum authored
        Code contributed by Matt Giuca.  quote() now encodes the input
        before quoting, unquote() decodes after unquoting.  There are
        new arguments to change the encoding and errors settings.
        There are also new APIs to skip the encode/decode steps.
        [un]quote_plus() are also affected.
      52dbbb90
  4. 14 Aug, 2008 1 commit
  5. 06 Aug, 2008 2 commits
    • Guido van Rossum's avatar
      df9f1ecc
    • Guido van Rossum's avatar
      Merged revisions 65544 via svnmerge from · 10faf6a0
      Guido van Rossum authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r65544 | guido.van.rossum | 2008-08-04 20:39:21 -0700 (Mon, 04 Aug 2008) | 28 lines
      
        Tracker issue 3487: sre "bytecode" verifier.
      
        This is a verifier for the binary code used by the _sre module (this
        is often called bytecode, though to distinguish it from Python bytecode
        I put it in quotes).
      
        I wrote this for Google App Engine, and am making the patch available as
        open source under the Apache 2 license.  Below are the copyright
        statement and license, for completeness.
      
        # Copyright 2008 Google Inc.
        #
        # Licensed under the Apache License, Version 2.0 (the "License");
        # you may not use this file except in compliance with the License.
        # You may obtain a copy of the License at
        #
        #     http://www.apache.org/licenses/LICENSE-2.0
        #
        # Unless required by applicable law or agreed to in writing, software
        # distributed under the License is distributed on an "AS IS" BASIS,
        # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        # See the License for the specific language governing permissions and
        # limitations under the License.
      
        It's not necessary to include these copyrights and bytecode in the
        source file.  Google has signed a contributor's agreement with the PSF
        already.
      ........
      10faf6a0
  6. 07 Jul, 2008 1 commit
  7. 01 Jul, 2008 1 commit
  8. 18 Jun, 2008 1 commit
    • Jeremy Hylton's avatar
      Make a new urllib package . · 1afc1696
      Jeremy Hylton authored
      It consists of code from urllib, urllib2, urlparse, and robotparser.
      The old modules have all been removed.  The new package has five
      submodules: urllib.parse, urllib.request, urllib.response,
      urllib.error, and urllib.robotparser.  The urllib.request.urlopen()
      function uses the url opener from urllib2.
      
      Note that the unittests have not been renamed for the
      beta, but they will be renamed in the future.
      
      Joint work with Senthil Kumaran.
      1afc1696
  9. 21 Jan, 2008 1 commit
    • Georg Brandl's avatar
      Merged revisions 60151-60159,60161-60168,60170,60172-60173,60175 via svnmerge from · 86def6cb
      Georg Brandl authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r60151 | christian.heimes | 2008-01-21 14:11:15 +0100 (Mon, 21 Jan 2008) | 1 line
      
        A bunch of header files were not listed as dependencies for object files. Changes to files like Parser/parser.h weren't picked up by make.
      ........
        r60152 | georg.brandl | 2008-01-21 15:16:46 +0100 (Mon, 21 Jan 2008) | 3 lines
      
        #1087741: make mmap.mmap the type of mmap objects, not a
        factory function. Allow it to be subclassed.
      ........
        r60153 | georg.brandl | 2008-01-21 15:18:14 +0100 (Mon, 21 Jan 2008) | 2 lines
      
        mmap is an extension module.
      ........
        r60154 | georg.brandl | 2008-01-21 17:28:13 +0100 (Mon, 21 Jan 2008) | 2 lines
      
        Fix example.
      ........
        r60155 | georg.brandl | 2008-01-21 17:34:07 +0100 (Mon, 21 Jan 2008) | 2 lines
      
        #1555501: document plistlib and move it to the general library.
      ........
        r60156 | georg.brandl | 2008-01-21 17:36:00 +0100 (Mon, 21 Jan 2008) | 2 lines
      
        Add a stub for bundlebuilder documentation.
      ........
        r60157 | georg.brandl | 2008-01-21 17:46:58 +0100 (Mon, 21 Jan 2008) | 2 lines
      
        Removing bundlebuilder docs again -- it's not to be used anymore (see #779825).
      ........
        r60158 | georg.brandl | 2008-01-21 17:51:51 +0100 (Mon, 21 Jan 2008) | 2 lines
      
        #997912: acknowledge nested scopes in tutorial.
      ........
        r60159 | vinay.sajip | 2008-01-21 18:02:26 +0100 (Mon, 21 Jan 2008) | 1 line
      
        Fix: #1836: Off-by-one bug in TimedRotatingFileHandler rollover calculation. Patch thanks to Kathryn M. Kowalski.
      ........
        r60161 | georg.brandl | 2008-01-21 18:13:03 +0100 (Mon, 21 Jan 2008) | 2 lines
      
        Adapt pydoc to new doc URLs.
      ........
        r60162 | georg.brandl | 2008-01-21 18:17:00 +0100 (Mon, 21 Jan 2008) | 2 lines
      
        Fix old link.
      ........
        r60163 | georg.brandl | 2008-01-21 18:22:06 +0100 (Mon, 21 Jan 2008) | 2 lines
      
        #1726198: replace while 1: fp.readline() with file iteration.
      ........
        r60164 | georg.brandl | 2008-01-21 18:29:23 +0100 (Mon, 21 Jan 2008) | 2 lines
      
        Clarify $ behavior in re docstring. #1631394.
      ........
        r60165 | vinay.sajip | 2008-01-21 18:39:22 +0100 (Mon, 21 Jan 2008) | 1 line
      
        Minor documentation change - hyperlink tidied up.
      ........
        r60166 | georg.brandl | 2008-01-21 18:42:40 +0100 (Mon, 21 Jan 2008) | 2 lines
      
        #1530959: change distutils build dir for --with-pydebug python builds.
      ........
        r60167 | vinay.sajip | 2008-01-21 19:16:05 +0100 (Mon, 21 Jan 2008) | 1 line
      
        Updated to include news on recent logging fixes and documentation changes.
      ........
        r60168 | georg.brandl | 2008-01-21 19:35:49 +0100 (Mon, 21 Jan 2008) | 3 lines
      
        Issue #1882: when compiling code from a string, encoding cookies in the
        second line of code were not always recognized correctly.
      ........
        r60170 | georg.brandl | 2008-01-21 19:36:51 +0100 (Mon, 21 Jan 2008) | 2 lines
      
        Add NEWS entry for #1882.
      ........
        r60172 | georg.brandl | 2008-01-21 19:41:24 +0100 (Mon, 21 Jan 2008) | 2 lines
      
        Use original location of document, which has translations.
      ........
        r60173 | walter.doerwald | 2008-01-21 21:18:04 +0100 (Mon, 21 Jan 2008) | 2 lines
      
        Follow PEP 8 in module docstring.
      ........
        r60175 | georg.brandl | 2008-01-21 21:20:53 +0100 (Mon, 21 Jan 2008) | 2 lines
      
        Adapt to latest doctools refactoring.
      ........
      86def6cb
  10. 12 Jan, 2008 1 commit
    • Christian Heimes's avatar
      Merged revisions 59921-59932 via svnmerge from · a62da1da
      Christian Heimes authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r59923 | raymond.hettinger | 2008-01-11 19:04:55 +0100 (Fri, 11 Jan 2008) | 1 line
      
        Speed-up and simplify code urlparse's result objects.
      ........
        r59924 | andrew.kuchling | 2008-01-11 20:33:24 +0100 (Fri, 11 Jan 2008) | 1 line
      
        Bug #1790: update link; remove outdated paragraph
      ........
        r59925 | thomas.heller | 2008-01-11 20:34:06 +0100 (Fri, 11 Jan 2008) | 5 lines
      
        Raise an error instead of crashing with a segfault when a NULL
        function pointer is called.
      
        Will backport to release25-maint.
      ........
        r59927 | thomas.heller | 2008-01-11 21:29:19 +0100 (Fri, 11 Jan 2008) | 4 lines
      
        Fix a potential 'SystemError: NULL result without error'.
        NULL may be a valid return value from PyLong_AsVoidPtr.
      
        Will backport to release25-maint.
      ........
        r59928 | raymond.hettinger | 2008-01-12 00:25:18 +0100 (Sat, 12 Jan 2008) | 1 line
      
        Update the opcode docs for STORE_MAP and BUILD_MAP
      ........
        r59929 | mark.dickinson | 2008-01-12 02:56:00 +0100 (Sat, 12 Jan 2008) | 4 lines
      
        Issue 1780: Allow leading and trailing whitespace in Decimal constructor,
        when constructing from a string. Disallow trailing newlines in
        Context.create_decimal.
      ........
        r59930 | georg.brandl | 2008-01-12 11:53:29 +0100 (Sat, 12 Jan 2008) | 3 lines
      
        Move OSError docs to exceptions doc, remove obsolete descriptions
        from os docs, rework posix docs.
      ........
        r59931 | georg.brandl | 2008-01-12 14:47:57 +0100 (Sat, 12 Jan 2008) | 3 lines
      
        Patch #1700288: Method cache optimization, by Armin Rigo, ported to
        2.6 by Kevin Jacobs.
      ........
        r59932 | georg.brandl | 2008-01-12 17:11:09 +0100 (Sat, 12 Jan 2008) | 2 lines
      
        Fix editing glitch.
      ........
      a62da1da
  11. 06 Jan, 2008 1 commit
    • Christian Heimes's avatar
      Merged revisions 59703-59773 via svnmerge from · faf2f63f
      Christian Heimes authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r59704 | christian.heimes | 2008-01-04 04:15:05 +0100 (Fri, 04 Jan 2008) | 1 line
      
        Moved include "Python.h" in front of other imports to silence a warning.
      ........
        r59706 | raymond.hettinger | 2008-01-04 04:22:53 +0100 (Fri, 04 Jan 2008) | 10 lines
      
        Minor fix-ups to named tuples:
      
        * Make the _replace() method respect subclassing.
      
        * Using property() to make _fields read-only wasn't a good idea.
          It caused len(Point._fields) to fail.
      
        * Add note to _cast() about length checking and alternative with the star-operator.
      ........
        r59707 | jeffrey.yasskin | 2008-01-04 09:01:23 +0100 (Fri, 04 Jan 2008) | 3 lines
      
        Make math.{floor,ceil}({int,long}) return float again for backwards
        compatibility after r59671 made them return integral types.
      ........
        r59709 | christian.heimes | 2008-01-04 14:21:07 +0100 (Fri, 04 Jan 2008) | 1 line
      
        Bug #1713: posixpath.ismount() claims symlink to a mountpoint is a mountpoint.
      ........
        r59712 | lars.gustaebel | 2008-01-04 15:00:33 +0100 (Fri, 04 Jan 2008) | 5 lines
      
        Issue #1735: TarFile.extractall() now correctly sets
        directory permissions and times.
      
        (will backport to 2.5)
      ........
        r59714 | andrew.kuchling | 2008-01-04 15:47:17 +0100 (Fri, 04 Jan 2008) | 1 line
      
        Update links to bug/patch tracker
      ........
        r59716 | christian.heimes | 2008-01-04 16:23:30 +0100 (Fri, 04 Jan 2008) | 1 line
      
        Added interface to Windows' WSAIoctl and a simple example for a network sniffer.
      ........
        r59717 | christian.heimes | 2008-01-04 16:29:00 +0100 (Fri, 04 Jan 2008) | 1 line
      
        And here is the rest of Hirokazu Yamamoto's patch for VS6.0 support. Thanks Hiro!
      ........
        r59719 | christian.heimes | 2008-01-04 16:34:06 +0100 (Fri, 04 Jan 2008) | 1 line
      
        Reverted last transaction. It's the wrong branch.
      ........
        r59721 | christian.heimes | 2008-01-04 16:48:06 +0100 (Fri, 04 Jan 2008) | 1 line
      
        socket.ioctl is only available on Windows
      ........
        r59722 | andrew.kuchling | 2008-01-04 19:24:41 +0100 (Fri, 04 Jan 2008) | 1 line
      
        Fix markup
      ........
        r59723 | andrew.kuchling | 2008-01-04 19:25:05 +0100 (Fri, 04 Jan 2008) | 1 line
      
        Fix markup
      ........
        r59725 | guido.van.rossum | 2008-01-05 01:59:59 +0100 (Sat, 05 Jan 2008) | 3 lines
      
        Patch #1725 by Mark Dickinson, fixes incorrect conversion of -1e1000
        and adds errors for -0x.
      ........
        r59726 | guido.van.rossum | 2008-01-05 02:21:57 +0100 (Sat, 05 Jan 2008) | 2 lines
      
        Patch #1698 by Senthil: allow '@' in username when parsed by urlparse.py.
      ........
        r59727 | raymond.hettinger | 2008-01-05 02:35:43 +0100 (Sat, 05 Jan 2008) | 1 line
      
        Improve namedtuple's _cast() method with a docstring, new name, and error-checking.
      ........
        r59728 | raymond.hettinger | 2008-01-05 03:17:24 +0100 (Sat, 05 Jan 2008) | 1 line
      
        Add error-checking to namedtuple's _replace() method.
      ........
        r59730 | fred.drake | 2008-01-05 05:38:38 +0100 (Sat, 05 Jan 2008) | 2 lines
      
        clean up a comment
      ........
        r59731 | jeffrey.yasskin | 2008-01-05 09:47:13 +0100 (Sat, 05 Jan 2008) | 11 lines
      
        Continue rolling back pep-3141 changes that changed behavior from 2.5. This
        round included:
         * Revert round to its 2.6 behavior (half away from 0).
         * Because round, floor, and ceil always return float again, it's no
           longer necessary to have them delegate to __xxx___, so I've ripped
           that out of their implementations and the Real ABC. This also helps
           in implementing types that work in both 2.6 and 3.0: you return int
           from the __xxx__ methods, and let it get enabled by the version
           upgrade.
         * Make pow(-1, .5) raise a ValueError again.
      ........
        r59736 | andrew.kuchling | 2008-01-05 16:13:49 +0100 (Sat, 05 Jan 2008) | 1 line
      
        Fix comment typo
      ........
        r59738 | thomas.heller | 2008-01-05 18:15:44 +0100 (Sat, 05 Jan 2008) | 1 line
      
        Add myself.
      ........
        r59739 | georg.brandl | 2008-01-05 18:49:17 +0100 (Sat, 05 Jan 2008) | 2 lines
      
        Fix C++-style comment.
      ........
        r59742 | georg.brandl | 2008-01-05 20:28:16 +0100 (Sat, 05 Jan 2008) | 2 lines
      
        Remove with_statement future imports from 2.6 docs.
      ........
        r59743 | georg.brandl | 2008-01-05 20:29:45 +0100 (Sat, 05 Jan 2008) | 2 lines
      
        Simplify index entries; fix #1712.
      ........
        r59744 | georg.brandl | 2008-01-05 20:44:22 +0100 (Sat, 05 Jan 2008) | 2 lines
      
        Doc patch #1730 from Robin Stocker; minor corrections mostly to os.rst.
      ........
        r59749 | georg.brandl | 2008-01-05 21:29:13 +0100 (Sat, 05 Jan 2008) | 2 lines
      
        Revert socket.rst to unix-eol.
      ........
        r59750 | georg.brandl | 2008-01-05 21:33:46 +0100 (Sat, 05 Jan 2008) | 2 lines
      
        Set native svn:eol-style property for text files.
      ........
        r59752 | georg.brandl | 2008-01-05 21:46:29 +0100 (Sat, 05 Jan 2008) | 2 lines
      
        #1719: capitalization error in "UuidCreate".
      ........
        r59753 | georg.brandl | 2008-01-05 22:02:25 +0100 (Sat, 05 Jan 2008) | 2 lines
      
        Repair markup.
      ........
        r59754 | georg.brandl | 2008-01-05 22:10:50 +0100 (Sat, 05 Jan 2008) | 2 lines
      
        Use markup.
      ........
        r59757 | christian.heimes | 2008-01-05 22:35:52 +0100 (Sat, 05 Jan 2008) | 1 line
      
        Final adjustments for #1601
      ........
        r59758 | guido.van.rossum | 2008-01-05 23:19:06 +0100 (Sat, 05 Jan 2008) | 3 lines
      
        Patch #1637: fix urlparse for URLs like 'http://x.com?arg=/foo'.
        Fix by John Nagle.
      ........
        r59759 | guido.van.rossum | 2008-01-05 23:20:01 +0100 (Sat, 05 Jan 2008) | 2 lines
      
        Add John Nagle (of issue #1637).
      ........
        r59765 | raymond.hettinger | 2008-01-06 10:02:24 +0100 (Sun, 06 Jan 2008) | 1 line
      
        Small code simplification.  Forgot that classmethods can be called from intances.
      ........
        r59766 | martin.v.loewis | 2008-01-06 11:09:48 +0100 (Sun, 06 Jan 2008) | 2 lines
      
        Use vcbuild for VS 2009.
      ........
        r59767 | martin.v.loewis | 2008-01-06 12:03:43 +0100 (Sun, 06 Jan 2008) | 2 lines
      
        Package using VS 2008.
      ........
        r59768 | martin.v.loewis | 2008-01-06 12:13:16 +0100 (Sun, 06 Jan 2008) | 2 lines
      
        Don't try to package msvcr90 for the moment.
      ........
        r59769 | georg.brandl | 2008-01-06 15:17:36 +0100 (Sun, 06 Jan 2008) | 4 lines
      
        #1696393: don't check for '.' and '..' in ntpath.walk since
        they aren't returned from os.listdir anymore.
        Reported by Michael Haggerty.
      ........
        r59770 | georg.brandl | 2008-01-06 15:27:15 +0100 (Sun, 06 Jan 2008) | 3 lines
      
        #1742: don't raise exception on os.path.relpath("a", "a"), but return os.curdir.
        Reported by Jesse Towner.
      ........
        r59771 | georg.brandl | 2008-01-06 15:33:52 +0100 (Sun, 06 Jan 2008) | 2 lines
      
        #1591: Clarify docstring of Popen3.
      ........
        r59772 | georg.brandl | 2008-01-06 16:30:34 +0100 (Sun, 06 Jan 2008) | 2 lines
      
        #1680: fix context manager example function name.
      ........
        r59773 | georg.brandl | 2008-01-06 16:34:57 +0100 (Sun, 06 Jan 2008) | 2 lines
      
        #1755097: document default values for [].sort() and sorted().
      ........
      faf2f63f
  12. 14 Dec, 2007 1 commit
    • Christian Heimes's avatar
      Merged revisions 59465-59487 via svnmerge from · 38053211
      Christian Heimes authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r59467 | georg.brandl | 2007-12-11 17:32:49 +0100 (Tue, 11 Dec 2007) | 2 lines
      
        Add another GHOP contributor.
      ........
        r59468 | kurt.kaiser | 2007-12-11 20:35:12 +0100 (Tue, 11 Dec 2007) | 3 lines
      
        IDLE_tabbedpages.071101.patch Tal Einat
        Cosmetic changes, one bug.  Remove tabpage.py, replaced by tabbedpages.py
      ........
        r59471 | gerhard.haering | 2007-12-11 22:07:40 +0100 (Tue, 11 Dec 2007) | 9 lines
      
        Forward-port of commit 59184.
      
        - Backported a workaround for a bug in SQLite 3.2.x/3.3.x versions where a
          statement recompilation with no bound parameters lead to a segfault
        - Backported a fix necessary because of an SQLite API change in version
          3.5.
          This prevents segfaults when executing empty queries, like our test suite
          does
      ........
        r59475 | christian.heimes | 2007-12-12 19:09:06 +0100 (Wed, 12 Dec 2007) | 1 line
      
        Fixed a nasty problem in the xxmodule.c
      ........
        r59478 | raymond.hettinger | 2007-12-13 01:08:37 +0100 (Thu, 13 Dec 2007) | 1 line
      
        Fix bug 1604. deque.__init__() did not clear existing contents like list.__init__. Not a backport candidate.
      ........
        r59480 | alexandre.vassalotti | 2007-12-13 18:58:23 +0100 (Thu, 13 Dec 2007) | 2 lines
      
        Fix issue #1313119: urlparse "caches" parses regardless of encoding
      ........
        r59482 | christian.heimes | 2007-12-13 20:23:16 +0100 (Thu, 13 Dec 2007) | 1 line
      
        Fixed bug #1613: Makefile's VPATH feature is broken
      ........
        r59484 | guido.van.rossum | 2007-12-13 21:50:10 +0100 (Thu, 13 Dec 2007) | 3 lines
      
        Patch #1608.  Someone with access to autoconf 2.61 or higher needs to
        run it and check in the resulting configure file.
      ........
        r59485 | thomas.heller | 2007-12-13 22:20:29 +0100 (Thu, 13 Dec 2007) | 1 line
      
        Ran autoconf.
      ........
        r59486 | raymond.hettinger | 2007-12-13 23:55:52 +0100 (Thu, 13 Dec 2007) | 1 line
      
        Simplify implementation of __replace__()
      ........
        r59487 | raymond.hettinger | 2007-12-14 00:52:59 +0100 (Fri, 14 Dec 2007) | 1 line
      
        Small speedup
      ........
      38053211
  13. 18 May, 2007 1 commit
  14. 15 May, 2007 1 commit
    • Guido van Rossum's avatar
      Merged revisions 55328-55341 via svnmerge from · 1bc535dc
      Guido van Rossum authored
      svn+ssh://pythondev@svn.python.org/python/branches/p3yk
      
      ........
        r55329 | brett.cannon | 2007-05-14 16:36:56 -0700 (Mon, 14 May 2007) | 3 lines
      
        Implement the removal of tuple parameter unpacking (PEP 3113).
        Thanks, Tony Lownds for the patch.
      ........
        r55331 | neal.norwitz | 2007-05-14 16:40:30 -0700 (Mon, 14 May 2007) | 1 line
      
        Update to use Python 3.0
      ........
        r55332 | brett.cannon | 2007-05-14 16:47:18 -0700 (Mon, 14 May 2007) | 2 lines
      
        Mention PEP 3113.  And thanks to Tony Lownds for the PEP 3113 patch.
      ........
        r55333 | neal.norwitz | 2007-05-14 16:57:06 -0700 (Mon, 14 May 2007) | 1 line
      
        Fix exception printing (no more exceptions module)
      ........
        r55334 | neal.norwitz | 2007-05-14 17:11:10 -0700 (Mon, 14 May 2007) | 1 line
      
        Remove popen* functions from os
      ........
        r55335 | neal.norwitz | 2007-05-14 18:03:38 -0700 (Mon, 14 May 2007) | 1 line
      
        Get rid of most of popen.  There are still some uses I need to cleanup.
      ........
        r55336 | neal.norwitz | 2007-05-14 21:11:34 -0700 (Mon, 14 May 2007) | 1 line
      
        Remove a few more remnants of the compiler package
      ........
        r55337 | neal.norwitz | 2007-05-14 22:28:27 -0700 (Mon, 14 May 2007) | 1 line
      
        Get test_[cx]pickle working on 64-bit platforms (avoid overflow int/long)
      ........
      1bc535dc
  15. 09 Feb, 2007 1 commit
    • Guido van Rossum's avatar
      Fix most trivially-findable print statements. · be19ed77
      Guido van Rossum authored
      There's one major and one minor category still unfixed:
      doctests are the major category (and I hope to be able to augment the
      refactoring tool to refactor bona fide doctests soon);
      other code generating print statements in strings is the minor category.
      
      (Oh, and I don't know if the compiler package works.)
      be19ed77
  16. 21 Apr, 2006 1 commit
  17. 20 Jan, 2006 1 commit
  18. 29 Jul, 2005 1 commit
  19. 09 Jan, 2005 1 commit
  20. 31 Dec, 2004 1 commit
  21. 29 Jun, 2004 1 commit
  22. 07 May, 2004 1 commit
  23. 06 May, 2004 1 commit
  24. 12 Oct, 2003 1 commit
  25. 30 Mar, 2003 1 commit
  26. 07 Jan, 2003 1 commit
    • Raymond Hettinger's avatar
      Revert change 1.37. · ef30dc87
      Raymond Hettinger authored
      The nanoseconds saved by using dict.fromkeys aren't
      worth the loss in clarity.  Linear searches live on.
      ef30dc87
  27. 06 Jan, 2003 3 commits
  28. 16 Oct, 2002 1 commit
  29. 14 Oct, 2002 1 commit
  30. 25 Sep, 2002 1 commit
  31. 18 Mar, 2002 1 commit
  32. 16 Nov, 2001 1 commit
  33. 13 Aug, 2001 1 commit
  34. 01 Mar, 2001 1 commit
  35. 15 Jan, 2001 1 commit