[issue32922] dbm.open() encodes filename with default encoding rather than the filesystem encoding

2020-10-04 Thread Josh Friend
Josh Friend added the comment: yes it should be closed, can i do that? (ill try...) -- stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue32922] dbm.open() encodes filename with default encoding rather than the filesystem encoding

2020-10-04 Thread Irit Katriel
Irit Katriel added the comment: This seems resolved, can it be closed? -- nosy: +iritkatriel ___ Python tracker ___ ___

[issue32922] dbm.open() encodes filename with default encoding rather than the filesystem encoding

2018-02-26 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 5bf74859fe253f0e8ff73ba699cd1a7e2dfbcea3 by Serhiy Storchaka in branch '3.6': [3.6] bpo-32922: dbm.open() now encodes filename with the filesystem encoding. (GH-5832). (GH-5906)

[issue32922] dbm.open() encodes filename with default encoding rather than the filesystem encoding

2018-02-26 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- pull_requests: +5677 ___ Python tracker ___ ___

[issue32922] dbm.open() encodes filename with default encoding rather than the filesystem encoding

2018-02-26 Thread miss-islington
miss-islington added the comment: New changeset a9e0b070b3e36701d0139361c769d374c4aacf1a by Miss Islington (bot) in branch '3.7': bpo-32922: dbm.open() now encodes filename with the filesystem encoding. (GH-5832)

[issue32922] dbm.open() encodes filename with default encoding rather than the filesystem encoding

2018-02-26 Thread miss-islington
Change by miss-islington : -- pull_requests: +5676 ___ Python tracker ___

[issue32922] dbm.open() encodes filename with default encoding rather than the filesystem encoding

2018-02-26 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 6f600ff1734ca2fdcdd37a809adf8130f0d8cc4e by Serhiy Storchaka in branch 'master': bpo-32922: dbm.open() now encodes filename with the filesystem encoding. (GH-5832)

[issue32922] dbm.open() encodes filename with default encoding rather than the filesystem encoding

2018-02-23 Thread Armin Rigo
Armin Rigo added the comment: It's not a new feature. See for example all functions from posixmodule.c: it should at least be PyArg_ParseTuple(args, "et", Py_FileSystemDefaultEncoding, _star_variable). -- nosy: +arigo

[issue32922] dbm.open() encodes filename with default encoding rather than the filesystem encoding

2018-02-23 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: PR 5832 fixes dbm.ndbm.open() and dbm.gdbm.open(). dbm.dumb.open() already used the filesystem encoding. I don't think anything should be fixed in 2.7. Supporting Unicode filenames looks like a new feature. --

[issue32922] dbm.open() encodes filename with default encoding rather than the filesystem encoding

2018-02-23 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- keywords: +patch pull_requests: +5610 stage: -> patch review ___ Python tracker ___

[issue32922] dbm.open() encodes filename with default encoding rather than the filesystem encoding

2018-02-23 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- assignee: -> serhiy.storchaka ___ Python tracker ___

[issue32922] dbm.open() encodes filename with default encoding rather than the filesystem encoding

2018-02-23 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- nosy: +serhiy.storchaka ___ Python tracker ___

[issue32922] dbm.open() encodes filename with default encoding rather than the filesystem encoding

2018-02-23 Thread Josh Friend
New submission from Josh Friend : Armin Rigo from the PyPy project pointed this out to me: https://bitbucket.org/pypy/pypy/issues/2755/dbmopen-expects-a-str-for-filename-throws This could probably lead to some weird behavior given the right filename --