[issue34406] Type in documentation
New submission from Alisue Lambda <lambdalisue@hashnote.net>: https://docs.python.org/3.8/using/windows.html#removing-the-max-path-limitat... Current
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FileSystem@LongPathsEnabled
Should be
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FileSystem\LongPathsEnabled
---------- assignee: docs@python components: Documentation messages: 323527 nosy: Alisue Lambda, docs@python priority: normal severity: normal status: open title: Type in documentation versions: Python 3.8 _______________________________________ Python tracker <report@bugs.python.org> <https://bugs.python.org/issue34406> _______________________________________
Change by Alisue Lambda <lambdalisue@hashnote.net>: ---------- title: Type in documentation -> Typo in documentation _______________________________________ Python tracker <report@bugs.python.org> <https://bugs.python.org/issue34406> _______________________________________
Pablo Galindo Salgado <pablogsal@gmail.com> added the comment: Isn't this saying that LongPathsEnabled is a value on the path HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FileSystem? ---------- nosy: +pablogsal _______________________________________ Python tracker <report@bugs.python.org> <https://bugs.python.org/issue34406> _______________________________________
Pablo Galindo Salgado <pablogsal@gmail.com> added the comment: I am not sure how people usually refer to the Windows register but this seems that the current line is differentiating from the path: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FileSystem and the value LongPathsEnabled ---------- _______________________________________ Python tracker <report@bugs.python.org> <https://bugs.python.org/issue34406> _______________________________________
Ammar Askar <ammar@ammaraskar.com> added the comment: For what its worth, window's reg command also makes a distinction between the registry key and value: C:\Users\ammar>reg.exe QUERY HKLM\Software\Microsoft\.NETFramework\Enable64Bit ERROR: The system was unable to find the specified registry key or value. C:\Users\ammar>reg.exe QUERY HKLM\Software\Microsoft\.NETFramework /V Enable64Bit HKEY_LOCAL_MACHINE\Software\Microsoft\.NETFramework Enable64Bit REG_DWORD 0x1 Maybe it can just be phrased as something like, "set the registry value LongPathsEnabled in HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FileSystem" ---------- nosy: +ammar2 _______________________________________ Python tracker <report@bugs.python.org> <https://bugs.python.org/issue34406> _______________________________________
Change by Berker Peksag <berker.peksag@gmail.com>: ---------- nosy: +steve.dower _______________________________________ Python tracker <report@bugs.python.org> <https://bugs.python.org/issue34406> _______________________________________
Steve Dower <steve.dower@python.org> added the comment: Yeah, it definitely shouldn't be a backslash there. The @ isn't my invention, but last time someone questioned it I couldn't find any public examples, so it may be an internal Microsoft thing? I'm not totally attached to it, but if you want to fix it it'll need to be written out in full that it's "a value named X of type Y". ---------- _______________________________________ Python tracker <report@bugs.python.org> <https://bugs.python.org/issue34406> _______________________________________
participants (5)
-
Alisue Lambda
-
Ammar Askar
-
Berker Peksag
-
Pablo Galindo Salgado
-
Steve Dower