From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 4899 invoked by alias); 6 Dec 2011 19:10:26 -0000 Received: (qmail 4884 invoked by uid 22791); 6 Dec 2011 19:10:24 -0000 X-SWARE-Spam-Status: No, hits=-7.6 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_HI,RP_MATCHES_RCVD,SPF_HELO_PASS,WEIRD_QUOTING X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 06 Dec 2011 19:09:50 +0000 Received: from int-mx01.intmail.prod.int.phx2.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id pB6J9k6X009550 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Tue, 6 Dec 2011 14:09:49 -0500 Received: from ns3.rdu.redhat.com (ns3.rdu.redhat.com [10.11.255.199]) by int-mx01.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id pB6HcQuM016475; Tue, 6 Dec 2011 12:38:27 -0500 Received: from barimba (ovpn01.gateway.prod.ext.phx2.redhat.com [10.5.9.1]) by ns3.rdu.redhat.com (8.13.8/8.13.8) with ESMTP id pB6HcPgU018274; Tue, 6 Dec 2011 12:38:26 -0500 From: Tom Tromey To: gdb-patches@sourceware.org Subject: FYI: remove extra quote from pretty_printers.py Date: Tue, 06 Dec 2011 19:14:00 -0000 Message-ID: MIME-Version: 1.0 Content-Type: text/plain Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2011-12/txt/msg00196.txt.bz2 I'm checking this in. There was an extra quote in a doc string in the Python library. Tom 2011-12-06 Tom Tromey * python/lib/gdb/command/pretty_printers.py (InfoPrettyPrinter.invoke1): Remove extra double quote. Index: python/lib/gdb/command/pretty_printers.py =================================================================== RCS file: /cvs/src/src/gdb/python/lib/gdb/command/pretty_printers.py,v retrieving revision 1.5 diff -u -r1.5 pretty_printers.py --- python/lib/gdb/command/pretty_printers.py 9 Aug 2011 12:45:40 -0000 1.5 +++ python/lib/gdb/command/pretty_printers.py 6 Dec 2011 17:37:50 -0000 @@ -148,7 +148,7 @@ def invoke1(self, title, printer_list, obj_name_to_match, object_re, name_re, subname_re): - """"Subroutine of invoke to simplify it.""" + """Subroutine of invoke to simplify it.""" if printer_list and object_re.match(obj_name_to_match): print title self.list_pretty_printers(printer_list, name_re, subname_re)