I have tried to remove via
remove_action( 'wp_head', 'feed_links', 10);
in template’s functions.php but it doesn’t work. I have still
<link rel="alternate" type="application/rss+xml" title="... Comments Feed" href="..." />
I’m using WordPress 3.4.2.
Try
The numbers 2 and 3 are priority; they fire earlier than 10. See https://developer.wordpress.org/reference/functions/add_action/