wxPython Style Guide inconsistency

I just wanted to point out an inconsistency in the wxPython Style Guide.

http://wiki.wxpython.org/wxPython%20Style%20Guide

In section 3 -- "Don't use IDs" -- it has an exception for standard
IDs. The example given is the EXIT event ID.

    item = FileMenu.Append(wx.ID_EXIT, "&Quit") -- This will put the
    Quit menu where it should be on OS-X, for instance.

However in section 4 -- "Use the Bind() method" it does not use the
standard ID for same code. Very confusing for newbies (and not so
newbies) -- especially in a Style Guide document.

    item = FileMenu.append(wx.ID_ANY, "&Quit")

Cheers, Brendan.