334 Commits (9c0e1f83af433a9eebb70cd41adcff2b0d608e05)

Author SHA1 Message Date
Christian Heimes eb9b39bd57 Paths and file names from the fs should always be decoded with PyUnicode_DecodeFSDefault and not PyUnicode_FromString 18 years ago
Amaury Forgeot d'Arc 06cfe95237 No need to include windows.h twice 18 years ago
Guido van Rossum 98297ee781 Merging the py3k-pep3137 branch back into the py3k branch. 18 years ago
Christian Heimes 5894ba7fad Fixed a bug in PyUnicode_DecodeFSDefault. strcmp() returns 0 on success. 18 years ago
Neal Norwitz 56cdf686fc Try to fix some of the failing tests on Win64. PY_SSIZE_T_MAX (8 bytes) 18 years ago
Thomas Wouters d2cf20eea2 Remove the simple slicing API. All slicing is now done with slice objects. 19 years ago
Eric Smith e226b55963 PEP 3101: Removed _formatter_xxx routines from sysmodule, and made them unicode methods instead (per GvR suggestion). 19 years ago
Neal Norwitz 8a4eb298e2 Fix refleaks in test_unicode and test_string related to the new format code. 19 years ago
Eric Smith 7ade6485ab PEP 3101: Completed string.Formatter class. Reimplemented field_name to object transformation. 19 years ago
Eric Smith 8c66326368 Implementation of PEP 3101, Advanced String Formatting. 19 years ago
Neal Norwitz aefab1e2ac Use unicode 19 years ago
Neal Norwitz f308132cc2 Add const to input string parameters 19 years ago
Collin Winter d5a5f5d32e Patch #1774414: make it possible to use SVK to develop Python. 19 years ago
Skip Montanaro 7a98be2efb Remove RISCOS support 19 years ago
Guido van Rossum 96ca6916b4 Make sys.path and sys.argv into lists of strings. 19 years ago
Guido van Rossum da5b8f2d28 Rip out the file object's implementation. 19 years ago
Martin v. Löwis 5b222135f8 Make identifiers str (not str8) objects throughout. 19 years ago
Walter Dörwald 94093ffcb6 Change most sys attributes that were str8 objects into str objects 19 years ago
Guido van Rossum e7ba495627 Merged revisions 55631-55794 via svnmerge from 19 years ago
Walter Dörwald 2a0c081470 Change sys.intern() so that unicode strings can be 19 years ago
Walter Dörwald 360b01a663 Change getdefaultencoding() and getfilesystemencoding() 19 years ago
Guido van Rossum 6f376c4031 Enable new I/O. Disable creation of old files. 19 years ago
Guido van Rossum 8d30cc0144 Get rid of all #ifdef Py_USING_UNICODE (it is always present now). 19 years ago
Guido van Rossum d8faa3654c Merged revisions 53952-54987 via svnmerge from 19 years ago
Neal Norwitz 68cdf8a6da SF #1701207, Fix bogus assertion (and test it!) 19 years ago
Neal Norwitz 16b7b53ad0 SF #1701207: svnversion_init assertion failed 19 years ago
Collin Winter 670e692134 Patch #1680961: remove sys.exitfunc and replace it with a private C API. Also, reimplement atexit in C so it can take advantage of this private API. 19 years ago
Guido van Rossum 79139b247b Kill off softspace completely (except in formatter.py which seems to have 19 years ago
Georg Brandl 88fc6646d1 * Remove PRINT_ITEM(_TO), PRINT_NEWLINE(_TO) opcodes. 19 years ago
Thomas Wouters b213704f3c Merged revisions 53451-53537 via svnmerge from 19 years ago
Thomas Wouters e471317a08 Backport trunk revision 53527: 19 years ago
Thomas Wouters afea529088 SF patch #1630975: Fix crash when replacing sys.stdout in sitecustomize 19 years ago
Georg Brandl 66a796e5ab Patch #1601678: move intern() to sys.intern(). 19 years ago
Thomas Wouters 89f507fe8c Four months of trunk changes (including a few releases...) 19 years ago
Neal Norwitz b5fdf0da21 Backport 52501: 19 years ago
Neal Norwitz 837ce9389e Add some asserts. In sysmodule, I think these were to try to silence 19 years ago
Armin Rigo 7ccbca93a2 Forward-port of r52136,52138: a review of overflow-detecting code. 20 years ago
Armin Rigo 4b63c21d6f Forward-port of r52136: a review of overflow-detecting code. 20 years ago
Thomas Wouters 0e3f591aee Merged revisions 46753-51188 via svnmerge from 20 years ago
Neal Norwitz e1fdb32ff2 Handle allocation failures gracefully. Found with failmalloc. 20 years ago
Tim Peters 32a8361f2d After approval from Anthony, merge the tim-current_frames 20 years ago
Thomas Wouters 73e5a5b65d Merge the rest of the trunk. 20 years ago
Thomas Wouters 4d70c3d9dd Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svn 20 years ago
Tim Peters 02f1d0dc78 _PySys_Init(): It's rarely a good idea to size a buffer to the 20 years ago
Brett Cannon 4f7a7220c1 Add 3 more bytes to a buffer to cover constants in string and null byte on top of 10 possible digits for an int. 20 years ago
Georg Brandl 96a8c3954c Make use of METH_O and METH_NOARGS where possible. 20 years ago
Thomas Wouters 49fd7fa443 Merge p3yk branch with the trunk up to revision 45595. This breaks a fair 20 years ago
Skip Montanaro 53a6d1de83 C++ compiler cleanup: extern "C" a couple declarations, cast int to size_t 20 years ago
Armin Rigo e170937af6 Ignore the references to the dummy objects used as deleted keys 20 years ago
Martin v. Löwis ea62d2535f Bug #1421664: Set sys.stderr.encoding 20 years ago