Blame 007-remove-startup-message.patch

343676a
diff --git a/lib_pypy/_pypy_interact.py b/lib_pypy/_pypy_interact.py
343676a
index 9542f54..5e44fb4 100644
343676a
--- a/lib_pypy/_pypy_interact.py
343676a
+++ b/lib_pypy/_pypy_interact.py
343676a
@@ -13,19 +13,6 @@ def interactive_console(mainmodule=None, quiet=False):
343676a
         sys.ps1 = '>>>> '
343676a
     if not hasattr(sys, 'ps2'):
343676a
         sys.ps2 = '.... '
343676a
-    #
343676a
-    if not quiet:
343676a
-        try:
343676a
-            from _pypy_irc_topic import some_topic
343676a
-            text = "%s: ``%s''" % ( irc_header, some_topic())
343676a
-            while len(text) >= 80:
343676a
-                i = text[:80].rfind(' ')
343676a
-                print(text[:i])
343676a
-                text = text[i+1:]
343676a
-            print(text)
343676a
-        except ImportError:
343676a
-            pass
343676a
-    #
343676a
     run_interactive = run_simple_interactive_console
343676a
     try:
343676a
         if not os.isatty(sys.stdin.fileno()):