[issue6621] [RFC] Remove leftover use of Carbon module from Lib/binhex.py

2009-08-02 Thread Mark Dickinson
Mark Dickinson added the comment: Closing as a duplicate of issue 2715. -- resolution: -> duplicate status: open -> closed superseder: -> Remove carbon-specific code from binhex ___ Python tracker ___

[issue6621] [RFC] Remove leftover use of Carbon module from Lib/binhex.py

2009-08-02 Thread Mark Dickinson
Mark Dickinson added the comment: See also issue 2715. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:

[issue6621] [RFC] Remove leftover use of Carbon module from Lib/binhex.py

2009-08-02 Thread Mark Dickinson
Mark Dickinson added the comment: This should be fixed in the 3.1 maintenance branch as well. -- versions: +Python 3.1 ___ Python tracker ___

[issue6621] [RFC] Remove leftover use of Carbon module from Lib/binhex.py

2009-08-02 Thread Mark Dickinson
Mark Dickinson added the comment: As far as I can tell, it looks safe to just remove these two blocks. There's a third block that should be removed as well (the second "if os.name == 'mac': ..." in the hexbin function. -- nosy: +marketdickinson __

[issue6621] [RFC] Remove leftover use of Carbon module from Lib/binhex.py

2009-08-01 Thread Vincent Legoll
New submission from Vincent Legoll : The binhex module still has uses of the deprecated and now now removed Carbon module. The attached patch 'fix' this by removing the code, something else may be required, but I don't know what. So this is only a RFC to start discussion -- components: