[issue40321] urllib.request does not support HTTP response status code 308

2021-09-28 Thread Roland Crosby
Roland Crosby added the comment: Hi, wanted to ping those watching this issue - there is a complete PR on GitHub, and all contributors have signed the CLA, but the bot hasn't updated the CLA status on the PR so it's still shown as blocking. Would appreciate if someone could manual

[issue13501] Make libedit support more generic; port readline / libedit to FreeBSD

2021-01-10 Thread Roland Hieber
Roland Hieber added the comment: Okay, I've had a look at this, and it seems that all the heavy lifting is already included in 68669ef7883 (via #38634, PR 16986). The selection of libedit vs. readline still needs to be ported. I've prepared (and tested) PR 24189 for the rebase of

[issue13501] Make libedit support more generic; port readline / libedit to FreeBSD

2021-01-10 Thread Roland Hieber
Change by Roland Hieber : -- pull_requests: +23016 pull_request: https://github.com/python/cpython/pull/24189 ___ Python tracker <https://bugs.python.org/issue13

[issue13501] Make libedit support more generic; port readline / libedit to FreeBSD

2020-12-13 Thread Roland Hieber
Roland Hieber added the comment: (That was meant to be 68669ef7883 for the autolinking feature) -- ___ Python tracker <https://bugs.python.org/issue13

[issue13501] Make libedit support more generic; port readline / libedit to FreeBSD

2020-12-13 Thread Roland Hieber
Roland Hieber added the comment: What's the status of this patch? Is it still needed after 68669ef7883e, which went into v3.8.1? -- nosy: +rhi ___ Python tracker <https://bugs.python.org/is

[issue37202] Future.cancelled is not set to true immediately after calling Future.cancel

2019-06-08 Thread Roland Netzsch
Change by Roland Netzsch : -- resolution: -> not a bug ___ Python tracker <https://bugs.python.org/issue37202> ___ ___ Python-bugs-list mailing list Un

[issue37202] Future.cancelled is not set to true immediately after calling Future.cancel

2019-06-08 Thread Roland Netzsch
Roland Netzsch added the comment: So there is no way to reliably find out whether a task has been cancelled by calling Task.cancelled()? -- ___ Python tracker <https://bugs.python.org/issue37

[issue37202] Future.cancelled is not set to true immediately after calling Future.cancel

2019-06-08 Thread Roland Netzsch
Roland Netzsch added the comment: Python-Version: [stuxcrystal@caprica ~]$ python3.7 --version Python 3.7.3 Additional Notes: Distribution: Fedora 30 (Workstation Edition) Kernel: x86_64 Linux 5.0.9-301.fc30.x86_64 -- ___ Python tracker <ht

[issue37202] Future.cancelled is not set to true immediately after calling Future.cancel

2019-06-08 Thread Roland Netzsch
New submission from Roland Netzsch : The attached file produces the following output: wait is still running wait is not set to cancelled! Awaiting cancelled future produced a CancelledError. A look a the documentation does not suggest a need to await the future in order to make

[issue34050] Broken links to "OpenSSL cipher list format" in documentation

2018-07-10 Thread Roland Weber
Roland Weber added the comment: Thanks! -- ___ Python tracker <https://bugs.python.org/issue34050> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34050] Broken links to "OpenSSL cipher list format" in documentation

2018-07-05 Thread Roland Weber
Roland Weber added the comment: I'm afraid I don't have the time to work on a patch. -- ___ Python tracker <https://bugs.python.org/issue34050> ___ ___

[issue34050] Broken links to "OpenSSL cipher list format" in documentation

2018-07-05 Thread Roland Weber
New submission from Roland Weber : The docs for SSLContext.set_ciphers [1] in Python 3 and ssl.wrap_socket [2] in Python 2 contain a link for "OpenSSL cipher list format", which points to an empty wiki page at https://wiki.openssl.org/index.php/Manual:Ciphers(1)#CIPHER_LIST_F

[issue28449] tarfile.open(mode = 'r:*', ignore_zeros = True) has 50% chance failed to open compressed tars?

2016-10-16 Thread Roland Bogosi
Roland Bogosi added the comment: For anyone finding this bug through Google before it is fixed, a workaround could be to monkeypatch the OPEN_METH dict with an OrderedDict: tarfile.TarFile.OPEN_METH = OrderedDict() tarfile.TarFile.OPEN_METH['gz']

[issue26022] string.replace(' ', ' ') has to be called 2 times before it works

2016-01-06 Thread Roland Eichman
New submission from Roland Eichman: Windows 10 python 3.5 small function in a small module contained a string len(str1) == 5000 {approx} str1 = str1.replace(' ',' ') did not work added, via copy & paste, a second identical line str1 = str1.replace(' ',

[issue16117] python2.7.3 struct misaligned when returned

2012-10-03 Thread Roland Lezuo
New submission from Roland Lezuo: class Int(ctypes.Structure): _fields_ = [ ("_i", ctypes.c_uint64), ("undef", ctypes.c_bool)] class Int { public: Int(); Int(uint64_t i);

[issue14606] Memory leak subprocess on Windows

2012-04-21 Thread Roland
Roland added the comment: yes, thank you. -- ___ Python tracker <http://bugs.python.org/issue14606> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue14606] Memory leak subprocess on Windows

2012-04-18 Thread Roland
Roland added the comment: 20kb exactly, I can confirm it is only on Windows. I'm currently running some tests to make sure it isn't a general Windows problem. I'll post an update as soon as done. -- ___ Python tracker <http

[issue14606] Memory leak subprocess

2012-04-17 Thread Roland
New submission from Roland : subprocess leaks memory on win 7 64bit (Python 2.7.3 32bit). The following code snippet will fill up memory slowly but completely after running it multiple times. When python exits the memory is not freed. >>>>>>>>>> import subproces

[issue14606] Memory leak subprocess

2012-04-17 Thread Roland
Changes by Roland : -- nosy: rfs priority: normal severity: normal status: open title: Memory leak subprocess type: resource usage versions: Python 2.7 ___ Python tracker <http://bugs.python.org/issue14

[issue9045] 2.7rc1: 64-bit OSX installer is not built with 64-bit tkinter

2010-06-25 Thread Roland Johnson
Roland Johnson added the comment: Does this also relate to 3.1? Tkinter in not installing for that version under 10.6.4 -- nosy: +RolandJ ___ Python tracker <http://bugs.python.org/issue9

[issue9073] Tkinter module missing from install on OS X 10.6.4

2010-06-24 Thread Roland Johnson
New submission from Roland Johnson : Tkinter no where to be found in the 3.1 install. No lib-tk folder either. There is a Tkinter folder but this conatains very few modules and none of the standard ones -- messages: 108547 nosy: RolandJ priority: normal severity: normal status: open

[issue4254] _cursesmodule.c callable update_lines_cols()

2008-11-03 Thread Roland Brickl
Roland Brickl <[EMAIL PROTECTED]> added the comment: >> i use this to get updated versions of curses.COLS and curses.LINES in >> the fact of an curses.KEY_RESIZE event. >I didn't know this event. Is a key in a special keyboard? Or an event >raised >by some c

[issue4254] _cursesmodule.c callable update_lines_cols()

2008-11-03 Thread Roland Brickl
Roland Brickl <[EMAIL PROTECTED]> added the comment: Hi Victor, i use this to get updated versions of curses.COLS and curses.LINES in the fact of an curses.KEY_RESIZE event. So i can use curses within python even without to have panels. It seems that curses.panel are the prefered way t

[issue4254] _cursesmodule.c callable update_lines_cols()

2008-11-03 Thread Roland Brickl
New submission from Roland Brickl <[EMAIL PROTECTED]>: curses.update_lines.cols() are normally usable within c programs. With this change, it can now be used too. It only calls the preexisting function that where only used internally. The cast in the return statement are possibly false?

[issue4100] xml.etree.ElementTree does not read xml-text over page bonderies

2008-10-13 Thread roland rehmnert
roland rehmnert <[EMAIL PROTECTED]> added the comment: We had to be careful how we should handle this. http://effbot.org/zone/element-iterparse.htm A note on this site says following : Note: The tree builder and the event generator are not necessarily synchronized; the latter usuall

[issue4100] xml.etree.ElementTree does not read xml-text over page bonderies

2008-10-10 Thread roland rehmnert
Changes by roland rehmnert <[EMAIL PROTECTED]>: Added file: http://bugs.python.org/file11763/bug.xml ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue4100] xml.etree.ElementTree does not read xml-text over page bonderies

2008-10-10 Thread roland rehmnert
Changes by roland rehmnert <[EMAIL PROTECTED]>: Added file: http://bugs.python.org/file11762/bug.py ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue4100] xml.etree.ElementTree does not read xml-text over page bonderies

2008-10-10 Thread roland rehmnert
New submission from roland rehmnert <[EMAIL PROTECTED]>: xml text fields are not read properly when it is encountered in a 'start' event. During a 'start'-event elem.text returns None, if the text string cross a page boundary of the file. (this is platform dependent