[issue28608] Support creating hardlink using `pathlib`

2018-11-27 Thread Alexandr Zamaraev
New submission from Alexandr Zamaraev : see https://python-forum.io/Thread-makin-hardlinks-with-pathlib-Path?pid=57399#pid57399 -- ___ Python tracker <https://bugs.python.org/issue28

[issue28608] Support creating hardlink using `pathlib`

2018-11-27 Thread Alexandr Zamaraev
Change by Alexandr Zamaraev : -- nosy: +shura_zam ___ Python tracker <https://bugs.python.org/issue28608> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue6815] UnicodeDecodeError in os.path.expandvars

2009-09-01 Thread Alexandr Zamaraev
New submission from Alexandr Zamaraev shura_...@users.sourceforge.net: OS Windows Vista Home Basic Ru + sp2 Python 2.6.2 (r262:71605, Apr 14 2009, 22:40:02) [MSC v.1500 32 bit (Intel)] on win32 Simple code to crach (file expandvars_bug.py): [code] # -*- coding: cp1251 -*- import os.path var

[issue6815] UnicodeDecodeError in os.path.expandvars

2009-09-01 Thread Alexandr Zamaraev
Alexandr Zamaraev shura_...@users.sourceforge.net added the comment: Sorry. First code is: var = ${APPDATA}\Microsoft\Windows\Start Menu In my windows F:\Lang\sf.net\svn\appupdaterecho %APPDATA% C:\Users\Леново\AppData\Roaming -- ___ Python tracker

[issue6815] UnicodeDecodeError in os.path.expandvars

2009-09-01 Thread Alexandr Zamaraev
Alexandr Zamaraev shura_...@users.sourceforge.net added the comment: All code: [code] # -*- coding: cp1251 -*- import os.path var = r'${APPDATA}\Microsoft\Windows\Start Menu' print os.path.expandvars(var) print os.path.expandvars(unicode(var, 'cp1251')) [/code] Console session: [code] C:\Users

[issue5759] Do not call __float__ to classec derived from str

2009-04-14 Thread Alexandr Zamaraev
New submission from Alexandr Zamaraev shura_...@users.sourceforge.net: Test case: [code] class S: def __init__(self, v): self.data = v def __int__(self): print(S.INT called) return int(str(self.data)) def __float__(self): print(S.FLOAT called

[issue1432] Strange behavior of urlparse.urljoin

2008-07-17 Thread Alexandr Zamaraev
Changes by Alexandr Zamaraev [EMAIL PROTECTED]: -- nosy: +shura_zam ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue1432 ___ ___ Python-bugs-list mailing

[issue2941] Propagate define to resurce mingw32 compile

2008-05-22 Thread Alexandr Zamaraev
New submission from Alexandr Zamaraev [EMAIL PROTECTED]: If resource source file depend from macros definition passing from define_macros parametr setup crash. -- components: Distutils files: cygwinccompiler.diff keywords: patch messages: 67184 nosy: shura_zam severity: normal status

[issue2942] mingw/cygwin do not accept asm file as extension source

2008-05-22 Thread Alexandr Zamaraev
New submission from Alexandr Zamaraev [EMAIL PROTECTED]: mingw/cygwin do not accept asm file as extension source -- components: Distutils files: cygwinccompiler.diff keywords: patch messages: 67185 nosy: shura_zam severity: normal status: open title: mingw/cygwin do not accept asm file

[issue2782] datetime/date strftime() method and time.strftime() inconsistency

2008-05-09 Thread Alexandr Zamaraev
Changes by Alexandr Zamaraev [EMAIL PROTECTED]: -- nosy: +shura_zam __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2782 __ ___ Python-bugs-list mailing list Unsubscribe

[issue2789] Comparsion datetime objects with None

2008-05-07 Thread Alexandr Zamaraev
New submission from Alexandr Zamaraev [EMAIL PROTECTED]: When comparing any standard objects with None returned True or False. When comparing the object of the module datetime with None raised exception TypeError. Example Python session: Python 2.5.2 (r252:60911, Feb 21 2008, 13:11:45) [MSC v