|   | 1 |  initial version  | 
The way implicit_plot works is by sampling the plotting region,
and detecting sign changes.
So if the line to plot is at the edge of the region, it won't work.
Workaround: enlarge the region when plotting, then restrict the region when showing the plot.
Example:
sage: x, y = SR.var('x, y')
sage: p = implicit_plot(y == 2, (x, -0.1, 2), (y, -0.1, 2.1))
sage: p.show(ymax=2)
 Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.
 
                
                Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.