Issue #2722. Now the char buffer to support the path string has

not fixed length, it mallocs memory if needed. As a result, we
don't have a maximum for the getcwd() method.
This commit is contained in:
Facundo Batista 2008-06-22 13:36:20 +00:00
parent 0ba92b24b7
commit 5596b0cfc2
3 changed files with 59 additions and 5 deletions

View file

@ -108,6 +108,8 @@ Extension Modules
Library
-------
- Issue #2722: Now the os.getcwd() supports very long path names.
- Issue #2888: Fixed the behaviour of pprint when working with nested
structures, to match the behaviour of 2.5 and 3.0 (now follows the common
sense).