[issue9917] resource max value represented as signed when should be unsigned

2021-12-16 Thread Daniel Diniz
Change by Daniel Diniz : -- versions: +Python 3.10, Python 3.11, Python 3.9 -Python 2.7, Python 3.4, Python 3.5 ___ Python tracker ___

[issue9917] resource max value represented as signed when should be unsigned

2019-02-24 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue9917] resource max value represented as signed when should be unsigned

2015-09-28 Thread Arnon Yaari
Arnon Yaari added the comment: I'm submitting a patch for review. I tested this and verified the values on Redhat and Unbuntu (both x86 and x64), Mac OS X (x64) and AIX (32-bit process on ppc64). 'configure' and 'pyconfig.h.in' were auto-generated with autoconf and autoheader, respectively. A

[issue9917] resource max value represented as signed when should be unsigned

2015-09-28 Thread Arnon Yaari
Arnon Yaari added the comment: getrlimit still returns -1 as 'max' when limit is unlimited and for RLIM_INFINITY because rlim_t is considered signed. The zshell project decides whether rlim_t is signed/unsigned (and also whether it is long or long long) in the configure step:

[issue9917] resource max value represented as signed when should be unsigned

2015-08-07 Thread Giampaolo Rodola'
Changes by Giampaolo Rodola' g.rod...@gmail.com: -- nosy: +giampaolo.rodola ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9917 ___ ___

[issue9917] resource max value represented as signed when should be unsigned

2014-09-30 Thread Mark Lawrence
Mark Lawrence added the comment: @David one for your TODO list or does this rightfully belong with somebody else? -- nosy: +BreamoreBoy versions: +Python 3.4, Python 3.5 -Python 3.1, Python 3.2 ___ Python tracker rep...@bugs.python.org

[issue9917] resource max value represented as signed when should be unsigned

2010-09-22 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: And here is Martin's summary of the issue: I think we really should create new issues for any remaining problems. AFAICT, the remaining problems are: - resource.RLIM_INFINITY is -1 on Linux, when it is meant to be a really large value

[issue9917] resource max value represented as signed when should be unsigned

2010-09-21 Thread R. David Murray
New submission from R. David Murray rdmur...@bitdance.com: Breaking out the library bug discussed in issue 678264 from the test bug the issue is about. See msg14344 and msg116479. -- components: Library (Lib) messages: 117123 nosy: ajaksu2, loewis, mdr0, nnorwitz, r.david.murray,