[issue29450] xattr functions aren't in os.supports_fd, os.supports_follow_symlinks

2017-02-05 Thread Omar Sandoval
New submission from Omar Sandoval: {get,list,remove,set}xattr all support fds and follow_symlinks, but they are not in the os.supports_fds and os.supports_follow_symlinks sets. The attached patch adds them. There are no HAVE_* features for the f and l variants of these syscalls since it's

[issue26273] Expose TCP_CONGESTION and TCP_USER_TIMEOUT to the socket module

2016-11-29 Thread Omar Sandoval
Omar Sandoval added the comment: Glad to see this finally get in :) -- ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue26273> ___ ___

[issue16142] ArgumentParser inconsistent with parse_known_args

2016-06-30 Thread Omar Sandoval
Changes by Omar Sandoval <osan...@osandov.com>: -- nosy: +Omar Sandoval ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue16142> ___

[issue26273] Expose TCP_CONGESTION and TCP_USER_TIMEOUT to the socket module

2016-02-03 Thread Omar Sandoval
New submission from Omar Sandoval: The socket module is missing a couple of TCP socket options: TCP_CONGESTION was added to Linux in v2.6.13 and TCP_USER_TIMEOUT was added in v2.6.37. These should be exposed. -- components: Library (Lib) files: socket_tcp_options.patch keywords: patch