summaryrefslogtreecommitdiffstats
path: root/Python/import.c
Commit message (Expand)AuthorAgeFilesLines
* Issue 1267, continued.Guido van Rossum2007-10-221-4/+13
* Fix a memory leak caused by PyTokenizer_FindEncoding() returning a char * thatBrett Cannon2007-10-201-3/+8
* Patch 1267 by Christian Heimes.Guido van Rossum2007-10-191-1/+12
* Patch #1272, by Christian Heimes and Alexandre Vassalotti.Guido van Rossum2007-10-151-4/+5
* Convert code from sys.stdin.encoding to UTF-8 inMartin v. Löwis2007-09-041-1/+2
* Update import.c's MAGIC value for the new raise syntax (as opposed to merely ...Collin Winter2007-08-311-1/+1
* Issue #1066: implement PEP 3109, 2/3 of PEP 3134.Collin Winter2007-08-311-0/+1
* Some changes in preparation of stricter rules about mixing str and bytes.Guido van Rossum2007-08-271-2/+9
* Use unicode and remove support for some uses of str8.Neal Norwitz2007-08-261-29/+10
* Fix a couple of warningsNeal Norwitz2007-08-261-1/+1
* Merged revisions 57221-57391 via svnmerge fromGuido van Rossum2007-08-241-1/+5
* Remove RISCOS supportSkip Montanaro2007-08-161-106/+0
* PyErr_Warn is deprecated in 2.5 - goes away for 3.0Skip Montanaro2007-08-121-4/+4
* SF patch# 1766592 by Paul Colomiets.Guido van Rossum2007-08-031-1/+1
* Fix import of frozen package submodules to use Unicode. Fixes test_frozen.Guido van Rossum2007-07-231-3/+4
* Merged revisions 56467-56482 via svnmerge fromMartin v. Löwis2007-07-211-2/+1
* Rip out the file object's implementation.Guido van Rossum2007-06-121-20/+17
* Revert 55876. Use PyUnicode_AsEncodedString instead.Martin v. Löwis2007-06-121-3/+3
* Make identifiers str (not str8) objects throughout.Martin v. Löwis2007-06-101-11/+45
* Merged revisions 55631-55794 via svnmerge fromGuido van Rossum2007-06-061-3/+2
* More uniform approach to getting (UTF8) bytes out of a string.Guido van Rossum2007-05-091-30/+3
* More coding by random modification.Guido van Rossum2007-05-041-5/+17
* Get rid of all #ifdef Py_USING_UNICODE (it is always present now).Guido van Rossum2007-05-031-2/+0
* Checkpoint. Manipulated things so that string literals are alwaysGuido van Rossum2007-04-271-1/+1
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-271-3/+36
* Patch #1680961: remove sys.exitfunc and replace it with a private C API. Also...Collin Winter2007-03-211-1/+1
* Implement PEP 3115 -- new metaclass syntax and semantics.Guido van Rossum2007-03-181-1/+2
* Essential changes for print function changes.Guido van Rossum2007-02-091-1/+2
* Update the magic number now that signature annotations were added.Guido van Rossum2006-12-281-1/+2
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-6/+11
* Jiwon Seo's PEP 3102 implementation.Guido van Rossum2006-10-271-1/+2
* SF patch 1547796 by Georg Brandl -- set literals.Guido van Rossum2006-08-281-1/+2
* Remove the UNARY_CONVERT opcode (was used for backticks). Also bumped up theBrett Cannon2006-08-251-1/+2
* Merge current trunk into p3yk. This includes the PyNumber_Index API change,Thomas Wouters2006-08-211-1/+6
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-45/+156
* Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svnThomas Wouters2006-06-081-3/+5
* Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.Thomas Wouters2006-05-271-12/+63
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-3/+22
* Checkpoint. 218 tests are okay; 53 are failing. Done so far:Guido van Rossum2006-03-151-2/+3
* Um, I thought I'd already checked this in.Guido van Rossum2006-03-101-0/+1
* Change int to Py_ssize_t in several places.Martin v. Löwis2006-03-071-4/+4
* SF patch #1438387, PEP 328: relative and absolute imports.Thomas Wouters2006-02-281-13/+56
* PEP 343 -- the with-statement.Guido van Rossum2006-02-271-1/+2
* Merge ssize_t branch.Martin v. Löwis2006-02-151-16/+18
* Check return result from Py_InitModule*(). This API can fail.Neal Norwitz2006-01-191-0/+2
* Merge from ast-arena. This reduces the code in Python/ast.c by ~300 lines,Neal Norwitz2005-12-171-3/+5
* Add const to several API functions that take char *.Jeremy Hylton2005-12-101-2/+2
* the ast-branch changed the stack discipline of MAKE_CLOSURE, so we need toMichael W. Hudson2005-10-211-1/+3
* Merge ast-branch to headJeremy Hylton2005-10-201-11/+12
* Fix SF bug #976608, Unhelpful error message when mtime of a module is -1Neal Norwitz2005-10-031-1/+5