* Emacs now ignores python byte-compiled files by default.
  Patch: python-completion-ignored-extensions.diff
  Added-by: Jerome Marant <jerome@debian.org>
  Date: Sun,  6 Jun 2004 14:18:42 +0200
  Status: has been incorporated upstream

  The completion-ignored-extensions variable now includes the
  extensions for Python byte-compiled files.

diff -urNad /home/jerome/pkg/emacs21/svn/emacs21/lisp/bindings.el emacs21/lisp/bindings.el
--- /home/jerome/pkg/emacs21/svn/emacs21/lisp/bindings.el	2004-06-06 14:10:54.000000000 +0200
+++ emacs21/lisp/bindings.el	2004-06-06 14:10:54.000000000 +0200
@@ -446,7 +446,9 @@
 	 ;; Texinfo-related
 	 ".toc" ".log" ".aux"
 	 ".cp" ".fn" ".ky" ".pg" ".tp" ".vr"
-	 ".cps" ".fns" ".kys" ".pgs" ".tps" ".vrs")))
+	 ".cps" ".fns" ".kys" ".pgs" ".tps" ".vrs"
+	 ;; Python byte-compiled
+	 ".pyc" ".pyo")))
 
 ;; Packages should add to this list appropriately when they are
 ;; loaded, rather than listing everything here.
