summaryrefslogtreecommitdiffstats
path: root/Python/sysmodule.c
Commit message (Expand)AuthorAgeFilesLines
* Merged revisions 60124-60142 via svnmerge fromChristian Heimes2008-01-201-0/+42
* Merged revisions 59952-59984 via svnmerge fromGuido van Rossum2008-01-151-2/+2
* Merged revisions 59933-59951 via svnmerge fromChristian Heimes2008-01-141-3/+88
* Merged revisions 59822-59841 via svnmerge fromChristian Heimes2008-01-071-0/+3
* Fix thoroughly misleading commentNick Coghlan2007-12-211-1/+1
* Fixed #1630Christian Heimes2007-12-151-1/+2
* Removed PyInt_GetMax and sys.maxintChristian Heimes2007-12-041-2/+0
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-021-10/+10
* #1535: rename __builtin__ module to builtins.Georg Brandl2007-12-021-4/+4
* Merged revisions 59245-59254 via svnmerge fromChristian Heimes2007-12-011-0/+2
* Added some additional checks for sys.std?? is None, see #1440Christian Heimes2007-11-151-1/+1
* Paths and file names from the fs should always be decoded with PyUnicode_Deco...Christian Heimes2007-11-141-3/+4
* No need to include windows.h twiceAmaury Forgeot d'Arc2007-11-101-5/+1
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-061-7/+2
* Fixed a bug in PyUnicode_DecodeFSDefault. strcmp() returns 0 on success.Christian Heimes2007-11-041-1/+1
* Try to fix some of the failing tests on Win64. PY_SSIZE_T_MAX (8 bytes)Neal Norwitz2007-10-261-1/+1
* Remove the simple slicing API. All slicing is now done with slice objects.Thomas Wouters2007-08-301-0/+3
* PEP 3101: Removed _formatter_xxx routines from sysmodule, and made them unico...Eric Smith2007-08-271-51/+0
* Fix refleaks in test_unicode and test_string related to the new format code.Neal Norwitz2007-08-271-4/+4
* PEP 3101: Completed string.Formatter class. Reimplemented field_name to obje...Eric Smith2007-08-261-13/+14
* Implementation of PEP 3101, Advanced String Formatting.Eric Smith2007-08-251-0/+50
* Use unicodeNeal Norwitz2007-08-251-4/+4
* Add const to input string parametersNeal Norwitz2007-08-251-6/+6
* Patch #1774414: make it possible to use SVK to develop Python.Collin Winter2007-08-221-28/+30
* Remove RISCOS supportSkip Montanaro2007-08-161-4/+0
* Make sys.path and sys.argv into lists of strings.Guido van Rossum2007-06-151-6/+6
* Rip out the file object's implementation.Guido van Rossum2007-06-121-27/+11
* Make identifiers str (not str8) objects throughout.Martin v. Löwis2007-06-101-2/+2
* Change most sys attributes that were str8 objects into str objectsWalter Dörwald2007-06-071-7/+7
* Merged revisions 55631-55794 via svnmerge fromGuido van Rossum2007-06-061-35/+0
* Change sys.intern() so that unicode strings can beWalter Dörwald2007-06-051-6/+13
* Change getdefaultencoding() and getfilesystemencoding()Walter Dörwald2007-06-051-2/+2
* Enable new I/O. Disable creation of old files.Guido van Rossum2007-05-241-52/+1
* Get rid of all #ifdef Py_USING_UNICODE (it is always present now).Guido van Rossum2007-05-031-10/+0
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-271-2/+2
* Patch #1680961: remove sys.exitfunc and replace it with a private C API. Also...Collin Winter2007-03-211-3/+0
* Kill off softspace completely (except in formatter.py which seems to haveGuido van Rossum2007-02-091-4/+1
* * Remove PRINT_ITEM(_TO), PRINT_NEWLINE(_TO) opcodes.Georg Brandl2007-02-091-1/+1
* Merged revisions 53451-53537 via svnmerge fromThomas Wouters2007-02-011-3/+3
* Patch #1601678: move intern() to sys.intern().Georg Brandl2006-12-191-0/+27
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-1/+5
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-39/+51
* Merge the rest of the trunk.Thomas Wouters2006-06-081-1/+1
* Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svnThomas Wouters2006-06-081-2/+2
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-4/+16
* Remove sys.exc_type, sys.exc_value, sys.exc_tracebackNeal Norwitz2006-03-171-4/+0
* Try to be a bit more consistent on all platforms:Neal Norwitz2006-03-091-1/+4
* Change int to Py_ssize_t in several places.Martin v. Löwis2006-03-071-1/+1
* Use Py_ssize_t for _Py_RefTotal.Neal Norwitz2006-03-041-1/+1
* Fix minor docstring typo.Brett Cannon2006-03-021-1/+1