will immediate child selector be deprecated?

will immediate child selector be deprecated?

there is a note on: http://api.jquery.com/child-selector/

Note:
The $("> elem", context) selector will be deprecated in a future release. Its usage is thus discouraged in lieu of using alternative selectors.

I need this feature and in irc channel i got another solution: context.find(">elem")
What i am wondering is since $(selector,context) won't be deprecated(will it?) and ">elem" can be used in .find(),
why $(">elem",context) will be deprecated?

Thank you~